import { default as React, ReactElement } from 'react';
import { Locale } from '../types';
interface INepaliDatePickerProps extends React.InputHTMLAttributes<HTMLInputElement> {
    value?: string;
    format?: string;
    inputElement?: ReactElement | null;
    locale?: Locale;
    onDateSelect?: ((value: string) => void) | null;
}
declare const NepaliDatePicker: React.FC<INepaliDatePickerProps>;
export default NepaliDatePicker;
