import { FieldType } from "../../../core/FlexDictionary"; export declare type CellValue = { value: any; label: string; }; export declare type CellThumb = { value: any; label: string; isLink?: boolean; isFile?: boolean; isLabels?: boolean; isAvatar?: boolean; color?: string; }; export declare const getCellThumb: (field: FieldType, cellValue: CellValue) => Promise; export declare const getNumberCellFormatted: (field: FieldType, value: any) => string; export declare const getDateCellFormatted: (field: FieldType, value: any) => string; export declare const getCellFormatted: (field: FieldType, value: any) => any; export declare const getCellValue: (field: FieldType, object: object, repeatingIndex?: number) => CellValue;