import { type BasePickerProps } from './BasePicker.types'; /** * Default labels for the DatePicker components with Japanese text */ export declare const LABEL_GO_TO_PREV_MONTH = "\u524D\u306E\u6708"; export declare const LABEL_GO_TO_NEXT_MONTH = "\u6B21\u306E\u6708"; export declare const LABEL_SELECT_MONTH = "\u6708\u3092\u9078\u629E"; export declare const LABEL_OPEN_CALENDAR = "\u30AB\u30EC\u30F3\u30C0\u30FC\u3092\u958B\u304F"; export declare const LABEL_CLOSE_CALENDAR = "\u30AB\u30EC\u30F3\u30C0\u30FC\u3092\u9589\u3058\u308B"; export declare const LABEL_TODAY = "\u4ECA\u65E5"; type LabelKey = 'GO_TO_PREV_MONTH' | 'GO_TO_NEXT_MONTH' | 'GO_TO_PREV_YEAR' | 'GO_TO_NEXT_YEAR' | 'SELECT_MONTH' | 'OPEN_CALENDAR' | 'CLOSE_CALENDAR' | 'TODAY'; export declare const BASE_PICKER_LABELS: Record, Record>; export declare const DAY_ABBREVIATIONS: Record, string[]>; export declare const DAY_FULL_NAMES: Record, string[]>; export declare function getBasePickerLabel(key: LabelKey, locale?: NonNullable): string; /** * The minimum year that can be selected in the DatePicker */ export declare const MINIMUM_VIEWABLE_YEAR = 1800; /** * The maximum year that can be selected in the DatePicker */ export declare const MAXIMUM_VIEWABLE_YEAR = 2099; /** * The minimum date that can be navigated to. The previous month button will be disabled when viewing January of this year. */ export declare const MINIMUM_NAVIGABLE_DATE: Date; /** * The maximum date that can be navigated to. The next month button will be disabled when viewing December of this year. */ export declare const MAXIMUM_NAVIGABLE_DATE: Date; export {};