import { DateColumn, Item, LimitFunction, Limit } from './types'; export declare const getTimezoneString: (localISOString: string) => string; export declare const getAbsoluteISOString: (localISOString: string) => string; export declare const parseDate: (value: unknown) => Date | null | undefined; export declare const getComparableValue: ({ valuePath }: T, item: Item) => number | undefined; export declare const toDate: (value: unknown, limit?: unknown, limitFunc?: LimitFunction) => Date | null; export declare const renderValue: (value: unknown, formatter?: Intl.DateTimeFormat) => string | undefined; export declare const getFormatter: (locale?: string) => Intl.DateTimeFormat; export declare const getString: ({ valuePath, locale }: T, item: unknown) => string | undefined; export declare const toInputString: (value: unknown) => string | null; export declare const getInputString: ({ valuePath }: DateColumn, item: unknown) => string | null; export declare const fromInputString: (value: unknown, property?: keyof Limit) => Date | undefined; export declare const toHashString: (value: unknown) => string; export declare const toXlsxValue: ({ valuePath }: T, item: Item) => "" | Date; export declare const applySingleFilter: (column: DateColumn, filter: Limit) => (item: Item) => boolean; //# sourceMappingURL=utils-date.d.ts.map