import React from 'react'; import { FieldProps } from 'formik'; export interface DatePickerProps { className?: string | null; disabled?: boolean; id?: string | null; maxDate?: string | null; minDate?: string | null; name: string; style?: object; } export declare type RenderDatepicker = (props: FieldProps) => React.ReactNode; declare const DatePickerField: React.FC; export default DatePickerField;