import { ColumnType } from '../../../lib/Api'; import { SerializerOrParserFnProps } from '../../../lib/columnHelper/column.interface'; export declare const DATE_SCALE_LABEL_TO_DIFF_MAP: { Y: string; M: string; D: string; H: string; m: string; s: string; }; export declare const DATE_DIFF_TO_SCALE_LABEL_MAP: { year: string; month: string; day: string; hour: string; minute: string; second: string; }; export declare const parseDateValue: (value: string | null, col: ColumnType, isSystemCol?: boolean) => string; export declare const parseDateTimeValue: (value: any, params: SerializerOrParserFnProps["params"]) => any; export declare const serializeDateOrDateTimeValue: (value: string | null, params: SerializerOrParserFnProps["params"]) => any;