export declare class DatepickerConfig {
    locale: string;
    datepickerMode: string;
    startingDay: number;
    yearRange: number;
    minMode: string;
    maxMode: string;
    showWeeks: boolean;
    formatDay: string;
    formatMonth: string;
    formatYear: string;
    formatDayHeader: string;
    formatDayTitle: string;
    formatMonthTitle: string;
    onlyCurrentMonth: boolean;
    monthColLimit: number;
    yearColLimit: number;
    shortcutPropagation: boolean;
}
