///
import { FnrInputProps } from 'nav-frontend-skjema';
import { TestProps, TypedFormInputValidationProps } from '../../types';
declare type InputMode = 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
interface OwnProps extends Omit {
name: FieldName;
inputmode?: InputMode & TestProps;
}
export declare type FormikInputProps = OwnProps & TypedFormInputValidationProps;
declare function FormikFnrInput({ name, feil, validate, inputMode, autoComplete, ...restProps }: FormikInputProps): JSX.Element;
export default FormikFnrInput;