import { type FormatDateOptions } from 'react-intl'; type Options = { locale?: string; timeZone?: string; type?: 'datetime' | 'date' | 'time'; precision?: 'minutes' | 'seconds' | 'milliseconds'; }; /** * Hook providing localized datetime format and placeholders for given locale and timezone. If no locale is specified, the user region setting is used. * @internal */ export declare const useDateTimeMessages: (options?: Options) => { locale: string; timeZone: string | undefined; parts: Intl.DateTimeFormatPart[]; formatOptions: FormatDateOptions; formatString: string; getPlaceholder: (type: keyof Intl.DateTimeFormatPartTypesRegistry) => string; }; export {};