export declare function perc(x: any): string; export declare function getCells(cells: any): any; export declare function getFlexProperty(property: any): any; export declare function getCellsTranslate({ x, y }: { x: any; y: any; }): string; export declare const conversionTypes: { getCells: typeof getCells; getCellsTranslate: typeof getCellsTranslate; getFlexProperty: typeof getFlexProperty; }; export declare function convertValue({ conversionType, value }: { conversionType: string; value: any; }): any;