/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { CalendarProps } from './Calendar'; export type CalendarBodyProps = { /** The month to display. */ readonly month: Date; } & Pick; /** * The day grid within a Calendar, showing all days of the current month. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-navigation-calendar--docs Calendar docs at Amsterdam Design System} */ export declare const CalendarBody: { ({ linkComponent, linkTemplate, locale, month }: CalendarBodyProps): import("react").JSX.Element; displayName: string; };