import { FunctionComponent } from "react";
import "./NepaliDatePicker.scss";
interface DatePickerOptions {
    className?: string;
    defaultDate?: string | boolean | undefined;
    placeholder?: string;
    disabled?: boolean;
    showResetDateButton?: boolean;
    resetButtonElement?: any;
    onDateSelect: (date: string | boolean | undefined) => any;
}
declare const NepaliDatePicker: FunctionComponent<DatePickerOptions>;
export default NepaliDatePicker;
