/** * Shared Japanese accessibility labels for date picker components * These constants provide consistent Japanese text for screen readers. */ export declare const DATE_PICKER_A11Y_LABELS: { /** Label for today's date */ readonly TODAY: "今日"; /** Label for selected dates */ readonly SELECTED: "選択済み"; /** Label for dates in the selected range */ readonly IN_RANGE: "選択範囲内"; /** Label for unavailable/disabled dates */ readonly UNAVAILABLE: "選択不可"; /** Label for range start dates */ readonly RANGE_START: "開始日"; /** Label for range end dates */ readonly RANGE_END: "終了日"; };