import type { Locale } from '../settings/types'; export declare function getDateTimeFormat(locale: string, options?: Intl.DateTimeFormatOptions): Intl.DateTimeFormat; export declare function getListFormat(locale: string, options?: Intl.ListFormatOptions): Intl.ListFormat; export declare function getNumberFormat(locale: string, options?: Intl.NumberFormatOptions): Intl.NumberFormat; export declare function getLocaleData(locale: string): Locale; export declare function getLocaleWeekValues(localeData: { yearStart?: number; weekStart?: number; }): { startOfWeek: number; minDaysInFirstWeek: number; };