import type { LocaleConfig, WeekStartDay } from "../types/locale"; export declare function getLocaleConfig(locale?: string): LocaleConfig; export declare function getLocalizedMonthName(month: number, locale?: string, short?: boolean): string; export declare function getLocalizedDayName(day: number, locale?: string, short?: boolean): string; export declare function adjustDaysForWeekStart(days: string[], firstDayOfWeek: WeekStartDay): string[]; export declare function getISOWeekNumber(date: Date): number;