/** * @description Long date formatter, with weekday, year, month and day. Used for describing long term date. * @example Wednesday 06 October 2025 */ export declare const LONG_DATE_FORMATER: Intl.DateTimeFormat; /** * @description Long date formatter, without weekday. * @example 01 September 2025 */ export declare const LONG_DATE_FORMATER_WITHOUT_WEEKDAY: Intl.DateTimeFormat; /** * @description Date formatter, with year, month and day. Used for describing long term date. * @example 2025-01-01 */ export declare const DATE_FORMATER: Intl.DateTimeFormat; /** * @description Day month formatter, with weekday, day and month. Used for describing long term date. * @example Wed 06 Oct */ export declare const DAY_MONTH_FORMATER: Intl.DateTimeFormat; /** * @description Time formatter, with hour, minute and second. Used for describing long term date. * @example 18:33:00 */ export declare const TIME_SECOND_FORMATER: Intl.DateTimeFormat; /** * @description Time formatter, with hour and minute. Used for describing long term date. * @example 18:33 */ export declare const TIME_FORMATER: Intl.DateTimeFormat; /** * @description Day month abbreviated formatter. Used for describing long term date. * @example 06 Oct */ export declare const DAY_MONTH_ABBREVIATED: Intl.DateTimeFormat; /** * @description Day month abbreviated formatter. Used for describing long term date. * @example 06 Oct 25 */ export declare const DAY_MONTH_ABBREVIATED_YEAR: Intl.DateTimeFormat; /** * @description Day month abbreviated hour minute second formatter. Used for describing long term date. * @example 06 Oct 18:33:00 */ export declare const DAY_MONTH_ABBREVIATED_HOUR_MINUTE_SECOND: Intl.DateTimeFormat; /** * @description Day month abbreviated hour minute formatter. Used for describing long term date. * @example 06 Oct 18:33 */ export declare const DAY_MONTH_ABBREVIATED_HOUR_MINUTE: Intl.DateTimeFormat; /** * @description Day month abbreviated year hour minute formatter. Used for describing long term date. * @example 06 Oct 2025 18:33 */ export declare const DAY_MONTH_ABBREVIATED_YEAR_HOUR_MINUTE: Intl.DateTimeFormat; /** * @description Year month day formatter, without time. Used for describing long term date. * @example 2025-01-01 */ export declare const YEAR_MONTH_DAY_FORMATTER: Intl.DateTimeFormat; /** * @description Month day formatter, without year. Used for short term date ranges. * @example 01-15 */ export declare const MONTH_DAY_FORMATTER: Intl.DateTimeFormat; type FormattedDateTimeProps = { format: 'date' | 'date-time' | 'date-time-second' | 'time' | 'time-second' | 'relative' | 'day-month-abbreviated-hour-minute' | 'day-month-abbreviated-hour-minute-second' | 'day-month-abbreviated-year-hour-minute' | 'long-date' | 'long-date-without-weekday' | 'chart-date' | 'year-month-day' | 'month-day' | 'day-month-abbreviated' | 'chart-long-term-date'; value: Date; }; /** * @description Formats the date and time according to the format specified. * @example * date: '2025-01-01' * 'date-time': '2025-01-01 00:00' * 'date-time-second': '2025-01-01 00:00:00' * time: '00:00' * 'time-second': '00:00:00' * relative: '1 month ago' * 'day-month-abbreviated-hour-minute': '06 Oct 18:33' * 'day-month-abbreviated-hour-minute-second': '06 Oct 18:33:00' * 'long-date': 'Wednesday 6 October 2025' * 'chart-date': '06 Oct' * 'year-month-day': '2025-10-06' */ export declare const FormattedDateTime: ({ format, value, }: FormattedDateTimeProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=FormattedDateTime.d.ts.map