import { DateOptions } from "../Column"; export declare enum TimeFormat { TwelveHour = "12hour", TwentyFourHour = "24hour" } export declare enum AwareDate { LLL = "LLL", lll = "lll", LL = "LL", L = "L" } export declare enum DateFormat { Local = "Local", Friendly = "Friendly", US = "US", European = "European", ISO = "ISO", Normal = "Normal", Month = "Month" } export declare type LocaleFormat = Record; export declare function dateToString(dateOptions: DateOptions, dateStr: string | null): string; export declare function parseDateByString(dateStr: string): Date;