import * as React from 'react'; import { ITextInputProps } from '../TextInput/TextInput'; export interface IProps { id: string; disabled?: boolean; meta?: { touched: boolean; error: string; }; focusInput?: boolean; notice?: string; value?: string; ignorePlaceHolder?: boolean; onChange: (dateString: string) => void; } export type ITimeFieldProps = IProps & Omit; export declare function TimeField(props: ITimeFieldProps): React.JSX.Element; //# sourceMappingURL=TimeField.d.ts.map