export type WcoDatepickerMode = 'single' | 'range' | 'month' | 'datetime';
export type WcoDatepickerValueFormat = 'api' | 'display';
export type WcoDateInput = Date | string;
export type WcoDateRange<T = string> = {
    start: T | null;
    end: T | null;
};
export type WcoDatepickerValue = string | null | WcoDateRange<string> | Date | WcoDateRange<Date>;
export type WcoDatepickerDisabledReason = 'future' | 'past' | 'minDate' | 'maxDate' | 'weekend' | 'holiday' | 'custom';
//# sourceMappingURL=datepicker.types.d.ts.map