/// <reference types="react" />
import { type FieldProps } from "@antmjs/vantui";
import type { CommonFieldProps } from "../../types";
export interface InputBaseProps extends CommonFieldProps<string>, Omit<FieldProps, "value" | "onChange" | "leftIcon" | "label" | "errorMessage"> {
    icon?: string;
}
export declare const InputBase: import("react").ForwardRefExoticComponent<Omit<InputBaseProps, "ref"> & import("react").RefAttributes<unknown>>;
