import { ButtonProps, ComponentWithAs as _ } from '@chakra-ui/react'; import { DateObj } from 'dayzed'; export interface DayOfMonthProps extends ButtonProps { /** * DateObj to decide what is rendered. */ dateObj: DateObj; /** * Whether this date falls outside the range of the * month currently being displayed. */ isOutsideCurrMonth?: boolean; } export declare const DayOfMonth: _<"button", DayOfMonthProps>;