import type { PropertyModel } from './property-config.js'; import type { GetPropertyDataFromConfig, GetRawValueFromConfig } from './types.js'; export type ConvertFunction = (property: GetPropertyDataFromConfig, cells: (GetRawValueFromConfig | undefined)[]) => { property: GetPropertyDataFromConfig; cells: (GetRawValueFromConfig | undefined)[]; }; export declare const createPropertyConvert: , To extends PropertyModel>(from: From, to: To, convert: ConvertFunction) => { from: any; to: any; convert: ConvertFunction; }; //# sourceMappingURL=convert.d.ts.map