import { DatePickerProps } from "../date-picker.props";
export interface DatePickerLocale {
    weekTitle: string;
    weekDayLabels: Record<string, string>;
    monthLabels: Record<number, string>;
    placeholder: {
        default: string;
        begin: string;
        end: string;
    };
    buttons: {
        selectDate: string;
        selectTime: string;
        commit: string;
        current: {
            week: string;
            year: string;
            month: string;
            today: string;
        };
    };
    quickSelectors: Record<string, string>;
}
export declare function useDatePickerLocale(props: DatePickerProps): DatePickerLocale;
