export type FwDatePickerModel = string | Date | { start: string | Date; end: string | Date; } | null; export declare interface FwDatePickerProps { modelValue: FwDatePickerModel; name: string; label?: string; placeholder?: string; isRange?: boolean; startLabel?: string; endLabel?: string; startPlaceholder?: string; endPlaceholder?: string; tabindex?: string; rounded?: boolean; required?: boolean; maxDate?: string | Date; minDate?: string | Date; rules?: string | Record | (() => boolean); enableErrors?: boolean; }