import React from 'react'; import type { TestIdProp } from '../../../types'; import { type OptionItem } from '../../OptionGrid/OptionGrid'; import type { CommonSelectorProps } from '../types'; export type TimeFieldTextContent = Record; export interface TimeFieldProps extends CommonSelectorProps, TestIdProp { /** * Available time options for selection */ timeOptions: OptionItem[]; /** * Text values for localization */ lang?: Partial; } declare const defaultEnglish: { readonly timeLabel: "time"; readonly select: "select"; }; /** * TimeField is a sub-component for selecting a time from predefined options. * Presently, this component is primarily used within the DateTimeInput. */ export declare const TimeField: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=TimeField.d.ts.map