export type DateLabelOptions = { /** The date to generate a label for */ date: Date; /** Whether the date is selected */ selected?: boolean; /** Whether the date is in a selected range */ inRange?: boolean; /** Whether the date is disabled */ disabled?: boolean; /** Whether this date is the start of a range */ isRangeStart?: boolean; /** Whether this date is the end of a range */ isRangeEnd?: boolean; }; /** * Generates an accessible label for a date cell with status information * * @param options - Configuration options for the label * * @returns Formatted accessible label string */ export declare function generateAccessibleDateLabel({ date, selected, inRange, disabled, isRangeStart, isRangeEnd, }: DateLabelOptions): string;