import { CalendarSystem, CalendarType } from '../calendar-core'; import { CalendarCellProps } from '../calendar'; export declare const getPlaceholderL10n: (componentKey: string, placeholder: string, locale: string) => string; export declare const parseInputValueDate: (inputVal: string, opts: { locale?: string; format?: string; inputFormatsString: string[]; calendarType?: string; }) => Date | null; export declare const createIsDateDisabledByCellTemplate: (cellTemplate: ((props: CalendarCellProps) => React.ReactNode) | undefined, currentValue: Date | null, minDate: Date, maxDate: Date, calendarSystem?: CalendarSystem, calendarType?: CalendarType) => (date: Date) => boolean; export declare const getFocusableElementsInRoot: (root?: Element | null) => HTMLElement[];