import type { ComponentType } from 'react' import type { HTMLAttrs } from './common' export interface DatePickerProps extends HTMLAttrs { id: string copy?: 'en' | 'fr' date?: any feedback?: string onDateChange?: (date: any) => void isDayDisabled?: (date: any) => boolean label?: string inline?: boolean hint?: string hintPosition?: 'inline' | 'below' tooltip?: string validation?: 'error' | 'success' disabled?: boolean dateFormat?: string } declare const DatePicker: ComponentType export default DatePicker