export interface DatePickerProps { date?: Date; hasError?: boolean; minDate?: Date; maxDate?: Date; excludedDates?: Date[]; minYear?: Date; maxYear?: Date; withBackground?: boolean; align?: 'left' | 'right'; placeholder?: string; collapseOnChange?: boolean; withoutDays?: boolean; disabled?: boolean; onChange?: (date: Date | null) => void; } export declare const DatePicker: ({ date, hasError, minDate, maxDate, excludedDates, minYear, maxYear, withBackground, align, placeholder, collapseOnChange, withoutDays, disabled, onChange }: DatePickerProps) => JSX.Element;