import { IDateTypeOptions } from '../../types/field'; export declare const getDateMomentMapByLocale: (locale?: string | undefined) => { SLASH: string; LOCAL: string; FRIENDLY: string; ISO: string; FORMULA_PARSE_FORMAT: string; }; export declare const getTimeMomentMapByLocale: (locale?: string | undefined) => { TWELVE_HOUR: string; TWOFOUR_HOUR: string; }; export declare const getFormattedDateTimeByLocale: (value: string, typeOptions: IDateTypeOptions, locale?: string | undefined) => string; export declare const getFormattedDateValueByLocale: (value: string | Date, typeOptions: IDateTypeOptions, locale?: string | undefined) => string; export declare const getFormattedTimeValueByLocale: (value: string | Date, typeOptions: IDateTypeOptions, locale?: string | undefined) => string;