import { InputHTMLAttributes } from 'react';
import { DataAttributes } from 'src/types';
import { FieldStatusProps } from '../Field/Field';
import { AffixesProps } from '../InputWrapper/InputWrapper';
export type InputPrimitiveProps = Omit, 'prefix' | 'suffix'> & AffixesProps & Omit & Partial;
declare const Input: import("react").ForwardRefExoticComponent, "prefix" | "suffix"> & AffixesProps & Omit & Partial & import("react").RefAttributes>;
export default Input;