import * as React from 'react'; import { BaseUIComponentProps } from "../../base-ui-copy/utils/types.mjs"; import { SchedulerProcessedDate } from "../../models/index.mjs"; export declare const CalendarGridHeaderCell: React.ForwardRefExoticComponent & React.RefAttributes>; export declare namespace CalendarGridHeaderCell { interface State { /** * Whether the header cell represents the current day. */ current: boolean; } interface Props extends BaseUIComponentProps<'div', State> { /** * The date of the events rendered in the same column as this header cell. */ date: SchedulerProcessedDate; /** * The format used for the `aria-label` attribute. * @default adapter.formats.weekday */ ariaLabelFormat?: string; /** * Whether to skip adding the `data-current` attribute to the root element when the header cell represents the current day. * This can be useful when the cells in the column are not representing a single day (e.g. in the month view). * @default false */ skipDataCurrent?: boolean; } }