///
import type { HTMLProps } from '../../utils';
type HTMLInputProps = HTMLProps['input'];
export type InputFieldProps = Omit & {
htmlSize?: HTMLInputProps['size'];
};
type ObjProps = {
id: string;
};
export declare const InputField: import("react").ForwardRefExoticComponent<(Omit, "children"> | Omit, "as">) & import("react").RefAttributes> & ObjProps;
export {};