import { CalendarMode } from '@mezzanine-ui/core/calendar'; import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; export interface CalendarCellProps extends NativeElementPropsWithoutKeyAndRef<'div'> { /** * Apply active styles if true. */ active?: boolean; /** * Apply disabled styles if true. */ disabled?: boolean; /** * Calendar mode for applying mode specific styles. * @default 'day' */ mode?: CalendarMode; /** * Apply today styles if true. */ today?: boolean; /** * The role attribute for accessibility */ role?: string; /** * Apply range start styles if true. */ isRangeStart?: boolean; /** * Apply range end styles if true. */ isRangeEnd?: boolean; /** * Apply weekend styles if true. */ isWeekend?: boolean; /** * Apply annotation styles if true. */ withAnnotation?: boolean; } /** * The react component for `mezzanine` calendar cell. * You may use it to compose your own calendar. */ declare function CalendarCell(props: CalendarCellProps): import("react/jsx-runtime").JSX.Element; export default CalendarCell;