export interface CalendarGridItem { key: React.Key; value: T; label: React.ReactNode; isSelected?: boolean; } export interface CalendarGridProps { headerLabel: React.ReactNode; prevAriaLabel: string; nextAriaLabel: string; onPrev: () => void; onNext: () => void; items: CalendarGridItem[]; onSelect: (value: T) => void; showNavigation?: boolean; className?: string; } export declare const CalendarGrid: { ({ headerLabel, prevAriaLabel, nextAriaLabel, onPrev, onNext, items, onSelect, showNavigation, className, }: CalendarGridProps): import("react/jsx-runtime").JSX.Element; displayName: string; };