import * as React from "react"; export type { InputProp, InputProp as InputProps } from "../../props/components/data-entry.prop.js"; export declare const Input: React.ForwardRefExoticComponent, "prefix" | "size"> & { onValueChange?: (value: string) => void; size?: "xs" | "sm" | "md" | "lg"; status?: import("../../props/index.js").ControlStatusProp; variant?: import("../../props/index.js").ControlVariantProp; allowClear?: import("../../props/index.js").AllowClearProp; onClear?: () => void; leadingIcon?: React.ReactNode; trailingIcon?: React.ReactNode; prefix?: React.ReactNode; suffix?: React.ReactNode; addonBefore?: React.ReactNode; addonAfter?: React.ReactNode; count?: import("../../props/components/data-entry.prop.js").ControlCountProp; } & React.RefAttributes>;