import type { HTMLAttributes } from "react";
import { NepaliDate } from "../NepaliDate";
type tdayProps = {
    dateHover?: string;
    todayStyle?: string;
    selected?: string;
    date: Date | NepaliDate;
    disabled?: boolean;
    isToday?: boolean;
    onRangeSelect?: (date: Date | NepaliDate) => void | undefined;
} & HTMLAttributes<HTMLButtonElement>;
declare const Day: (props: tdayProps) => import("react").JSX.Element;
export default Day;
