import type { ReactNode } from "react"; import type { CalendarSubtitle } from "./calendar.shared"; interface CalendarHeaderProps { title?: ReactNode; subtitle?: CalendarSubtitle; showSubtitle?: boolean; date?: Date; } declare function CalendarHeader(props: CalendarHeaderProps): JSX.Element; export default CalendarHeader;