import { FC, HTMLAttributes } from 'react'; export type CalendarContentProps = HTMLAttributes; /** * `CalendarContent` is the main layout container for the calendar body. * It is typically used to wrap day, month, and year pickers, and * propagates the current calendar `size` from `CalendarBase` via the * `data-size` attribute so that the internal layout and density can be * styled consistently. */ export declare const CalendarContent: FC;