export type ModelValue = Date | string | Date[] | string[];
export interface DatePicker {
    id: string;
    label?: string;
    range?: boolean;
    error?: string;
    size?: 'small' | 'medium';
    helperText?: string;
    modelValue?: ModelValue;
    placeholder?: string;
}
export interface Range {
    text: string;
    value?: number;
}
