export type WheelImportRow = {
    sourceId?: number;
    wheelInchValue: number;
    wheelName: string;
    wheelCode: string;
    wheelSize: string;
    wheelSizeCode: string;
    wheelType: string;
    wheelTypeCode: string;
    bearingType: string;
    bearingCode: string;
    dustCoverName: string;
    dustCoverCode: string;
    wheelColor: string;
    wheelColorCode: string;
    dynamicLoadCarryCapacity: string;
    dynamicLoadCarryCapacityCode: string;
    wheelTypeSubName: string;
    wheelTypeSubNameCode: string;
    status: string;
};
export type WheelImportResult = {
    rows: WheelImportRow[];
    errors: string[];
};
export declare const wheelCsvHeaders: string[];
export declare function parseWheelImport(text: string): WheelImportResult;
export declare function parseWheelInchValue(value?: string): number;
