/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { CalendarProps } from './Calendar'; export type CalendarDayProps = { /** The date to display. */ readonly date: Date; /** Whether this date is today. */ readonly isCurrent: boolean; } & Pick; /** * A single day within the Calendar grid, rendered as a link. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-navigation-calendar--docs Calendar docs at Amsterdam Design System} */ export declare const CalendarDay: { ({ date, isCurrent, linkComponent, linkTemplate, locale }: CalendarDayProps): import("react").JSX.Element; displayName: string; };