/// import { InputProps } from 'nav-frontend-skjema'; import { TestProps, TypedFormInputValidationProps, UseFastFieldProps } from '../../types'; import { TimeInputLayoutProps, TimeInputRefProps } from './TimeInput'; interface OwnProps extends Omit { name: FieldName; maxHours?: number; maxMinutes?: number; timeInputLayout?: TimeInputLayoutProps; } export declare type FormikTimeInputProps = OwnProps & TypedFormInputValidationProps & UseFastFieldProps & TimeInputRefProps & TestProps; declare function FormikTimeInput({ label, name, validate, feil, timeInputLayout, useFastField, description, ...restProps }: FormikTimeInputProps): JSX.Element; export default FormikTimeInput;