import { FunctionComponent, PropsWithoutRef, Ref } from 'react'; import { a as CalendarApi, d as CalendarOptions } from './f937503a.js'; interface CalendarRef { getApi(): CalendarApi; } type CalendarPropsInternal = CalendarOptions & { id?: string; }; type CalendarProps = PropsWithoutRef & { ref?: Ref; }; declare const Calendar: FunctionComponent; export { Calendar as C, CalendarRef as a };