import * as React from 'react'; import { TextInputProps } from 'react-native'; import { PossibleClockTypes, PossibleInputTypes } from './timeUtils'; interface TimeInputProps extends Omit, 'onFocus'> { value: number; clockType: PossibleClockTypes; onPress?: (type: PossibleClockTypes) => any; pressed: boolean; onChanged: (n: number) => any; inputType: PossibleInputTypes; inputFontSize?: number; } declare const _default: React.ForwardRefExoticComponent>; export default _default; //# sourceMappingURL=TimeInput.d.ts.map