import "react-day-picker/style.css"; export type CalendarMode = "single" | "multiple" | "range"; export type DateSelectorSize = "sm" | "md" | "lg"; export type DateSelectorVariant = "accent" | "primary" | "purple"; export type DateSelectorShape = "default" | "subtle"; export type DateSelectorValue = string | string[] | undefined; export interface DateSelectorProps { shape?: DateSelectorShape; label?: string; placeholder?: string; disabled?: boolean; readOnly?: boolean; minDate?: Date; maxDate?: Date; mode?: CalendarMode; className?: string; error?: string; value?: DateSelectorValue; size?: DateSelectorSize; helperText?: string; variant?: DateSelectorVariant; checked?: boolean; dimissible?: boolean; mask?: string; onClickDimissibleIcon?: () => void; onChange?: (value: DateSelectorValue) => void; onBlur?: React.FocusEventHandler; rangeStartLabel?: string; rangeEndLabel?: string; } export declare const DateSelector: React.FC;