import { FunctionComponent } from 'react';
import { NepaliDateSelectorEvents } from '../Types';
interface CalenderProps {
value: string | null;
events: NepaliDateSelectorEvents;
}
declare const Calender: FunctionComponent<CalenderProps>;
export default Calender;