import React from 'react'; import type { AccessibilityProps, DomProps, FocusEvents, StyleProps } from "../types/index.js"; import type { RangeCalendarState } from "./hooks/types.js"; import type { CalendarState } from "./hooks/useCalendarState.js"; import "./Calendar.css"; export type CalendarSize = 'm' | 'l' | 'xl'; export interface CalendarInstance { focus: () => void; } export interface CalendarViewProps extends DomProps, StyleProps, FocusEvents, AccessibilityProps { state: CalendarState | RangeCalendarState; /** * The size of the element. * @default m */ size?: CalendarSize; } export declare const CalendarView: React.ForwardRefExoticComponent>;