import { default as NepaliDate } from 'nepali-datetime';
import { Locale } from '../../types';
export interface INepaliCalendarProps extends React.InputHTMLAttributes<HTMLInputElement> {
    selectedNepaliDate?: NepaliDate | null;
    onDateSelect?: ((nepaliDate: NepaliDate) => void) | null;
    locale?: Locale;
}
declare const NepaliCalendar: React.FC<INepaliCalendarProps>;
export default NepaliCalendar;
