import React from 'react';
import type { DatePickerProps } from 'react-datepicker';
export type Props = DatePickerProps & {
    className?: string;
    customInput?: React.ReactNode;
    disabled?: boolean;
    name: string;
    placeholder?: string;
    onChange: (newValue: any) => void;
};
declare const OnDatePicker: React.FC<Props>;
export default OnDatePicker;
