export type DatePickerTheme = "light" | "dark"; export interface DatePickerOptions { selector: string; value?: Date | string; minDate?: Date | string; maxDate?: Date | string; startOfWeek?: 0 | 1 | 2 | 3 | 4 | 5 | 6; locale?: string; placeholder?: string; disabled?: boolean; showIcon?: boolean; theme?: DatePickerTheme; showMonthYearSelect?: boolean; yearRange?: { start: number; end: number; }; onSelect?: (date: Date) => void; hydrate?: boolean; } //# sourceMappingURL=DatePicker.types.d.ts.map