Files
2026-05-30 19:59:39 -03:00

12 lines
438 B
TypeScript

/**
* Generates the ARIA label for the "previous month" button.
*
* @defaultValue `"Go to the Previous Month"`
* @param month - The date representing the previous month, or `undefined` if
* there is no previous month.
* @returns The ARIA label for the "previous month" button.
* @group Labels
* @see https://daypicker.dev/docs/translation#aria-labels
*/
export declare function labelPrevious(_month: Date | undefined): string;