export type DateTimeFormat = keyof typeof dateTimeFormats; export declare const dateTimeFormats: { dateOnlyNumbers: (value: string | Date | undefined, locale: string | undefined) => string; dateLong: (value: string | Date | undefined, locale: string | undefined) => string; dateLongWithWeekday: (value: string | Date | undefined, locale: string | undefined) => string; dateShort: (value: string | Date | undefined, locale: string | undefined) => string; dateShortWithWeekday: (value: string | Date | undefined, locale: string | undefined) => string; timeShort: (value: string | Date | undefined, locale: string | undefined) => string; timeLong: (value: string | Date | undefined, locale: string | undefined) => string; dateTimeLong: (value: string | Date | undefined, locale: string | undefined) => string; dateTimeLongWithWeekday: (value: string | Date | undefined, locale: string | undefined) => string; dateTimeShort: (value: string | Date | undefined, locale: string | undefined) => string; };