import type { DateFrameworkType } from "@salt-ds/date-adapters"; import { type ComponentPropsWithRef } from "react"; /** * Props for the CalendarMonthHeader component. * @template TDate - The type of the date object. */ export interface CalendarMonthHeaderProps extends ComponentPropsWithRef<"div"> { /** * Month value */ month: TDate; /** * Format the month value * @param date */ format?: string; } export declare const CalendarMonthHeader: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>;