///
import { InputProps } from 'nav-frontend-skjema';
import { TestProps, TypedFormInputValidationProps } from '../../types';
import { InputWithSuffix } from '../formik-input/FormikInput';
interface OwnProps extends Omit {
name: FieldName;
integerValue?: boolean;
}
export declare type FormikNumberInputProps = OwnProps & TypedFormInputValidationProps & InputWithSuffix & TestProps;
declare function FormikNumberInput({ name, feil, validate, autoComplete, bredde, integerValue, ...restProps }: FormikNumberInputProps): JSX.Element;
export default FormikNumberInput;