import { type DateLabelOptions } from './generateDateLabel'; export type DateAriaAttributes = { 'aria-label': string; 'aria-pressed': 'true' | undefined; 'aria-selected': 'true' | 'false'; }; /** * Generates consistent ARIA attributes for date cells * * @param options - Configuration options for the ARIA attributes * * @returns Object with ARIA attributes */ export declare function getDateAriaAttributes(options: DateLabelOptions): DateAriaAttributes;