/** * DayCellProps is the props interface for the DayCell component. */ type DayCellProps = { /** * The day of the week. * * 0 = Monday, 1 = Tuesday, 2 = Wednesday, 3 = Thursday, 4 = Friday, 5 = Saturday, 6 = Sunday */ day: number; }; /** * DayCell is a cell that represents a day of the week in the Calendar component. */ export declare function DayCell({ day }: DayCellProps): import("react/jsx-runtime").JSX.Element; export {};