import type { FunctionComponent } from 'react'; import type { ForwardProps } from '../../../types'; import type { FormControlProps } from '../../FormControl'; import type DateTimeProps from '../DateTime.types'; import type { MinuteInterval } from '../Picker/DatePicker.types'; import type { ClockFormat } from './utils'; export interface TimeInputProps extends DateTimeProps { /** * Display the time with seconds. * @default false */ withSeconds?: boolean; /** * Defines interval for time picker options (in minutes). * @default 30 */ pickerInterval?: MinuteInterval; /** Defines clock format that overrides locale based format */ clockFormat?: ClockFormat; /** Pass a heading and content to show additional information on the field. */ additionalInfo?: FormControlProps['additionalInfo']; } export declare const StyledTimeInput: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, never>, "ref"> & { ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject | null | undefined; }, TimeInputProps>> & string; declare const _default: FunctionComponent & { getTestIds: (testIdProp?: import("../../../types").TestIdProp["testId"]) => import("../../../types").TestIdsRecord; }; export default _default; //# sourceMappingURL=TimeInput.d.ts.map