import type { WeekDay } from '../../types';
export default function useLocale({ locale, weekStartDay, }: {
    locale: string;
    weekStartDay: WeekDay;
}): {
    monthsLong: string[];
    daysShort: string[];
    daysLong: string[];
};
