import { CalendarProps as StableCalendarProps } from '../../../components'; export interface CalendarBetaProps { dateMetadata?: { date: string; context: string; }[]; onMonthView?: ({ month, year }: { month: number; year: number; }) => void; } export declare const Calendar: (props: CalendarBetaProps & StableCalendarProps) => import("react/jsx-runtime").JSX.Element;