import type { DefaultLocale } from '../Locales';
export declare type Locale = typeof DefaultLocale;
export interface LocaleData {
    months: () => string[];
    monthsShort: () => string[];
    weekdaysMin: () => string[];
    weekdaysShort: () => string[];
}
