import * as React from 'react'; interface TimeFieldProps { testId?: string; label?: React.ReactNode; error?: boolean; value?: string; onChange?: (val: string) => any; onBlur?: React.FocusEventHandler; disabled?: boolean; fullWidth?: boolean; helperText?: React.ReactNode; } export declare const TimeField: React.SFC; export default TimeField;