import { ItemData, MinMaxValues } from './type'; export declare const DISABLED_PAD_AMOUNT = 15; export declare const MS_TO_DAY_DIVIDER: number; export declare const monthList: { id: string[]; en: string[]; }; export declare const dayData: { id: string[]; en: string[]; }; export declare const fullMonthList: { id: string[]; en: string[]; }; export declare const disableArrayValues: (array: ItemData[], minMax: MinMaxValues) => void; export declare const disableArrayValuesByIndex: (array: ItemData[], minIndex: number, maxIndex: number) => void; export declare const generateYears: (minYear?: number, maxYear?: number) => ({ text: string; value: number; disabled: boolean; } | { text: string; value: number; disabled?: undefined; })[]; export declare const formatDate: (format: string) => { format: { date: string; month: string; year: string; }; order: string[]; }; export declare const defaultInitialDate: Date; export declare const defaultMaxDate: Date; export declare const defaultMinDate: Date;