export declare const INITIAL_YEAR_OF_CALENDAR: number;
export declare const FINAL_YEAR_OF_CALENDAR: number;
export declare const YEARS_LIST: number[];
export declare const MONTHS_IN_WORDS: {
    name_np: string;
    name_en: string;
    month_position: number;
}[];
export declare const DAYS_OF_WEEK: {
    name_en: string;
    name_np: string;
    week_position: number;
}[];
export declare const DEFAULT_INPUT_HEIGHT = 32;
export declare const DEFAULT_CALENDAR_ICON_COLOR = "gray";
export declare const CALENDAR_WIDTH = 220;
export declare const CALENDAR_HEIGHT = 284;
