import type { FC } from 'react'; interface CalendarGridProps { /** Whether to show navigation arrows in header */ showArrows?: boolean; /** Whether to show the jump to today button in header */ showJumpToToday?: boolean; /** Month offset for displaying different months in range picker (0 = current, 1 = next month) */ monthOffset?: number; } /** * Month grid with day cells. * Displays weekday headers and day cells with selection states. * Automatically adapts to single/range calendar mode from context. */ export declare const CalendarGrid: FC; export {};