import { default as React } from 'react'; export interface DatePickerProps { value?: Date | null; onChange?: (date: Date) => void; label?: string; placeholder?: string; error?: string; isValid?: boolean; disabled?: boolean; className?: string; /** Format the selected date shown in the trigger. Default: ISO yyyy-mm-dd. */ formatDate?: (date: Date) => string; } export declare const DatePicker: React.FC;