export declare function DatePicker(props: DatePickerProps): JSX.Element; export interface DatePickerProps { onChange: (date?: Date) => void; maximumDate?: Date; minimumDate?: Date; style?: any; labelStyle?: any; textStyle?: any; label?: string; }