import { type HelperTextProps } from '../input-components/index.js';
import { InferComponentProps } from '../../types.js';
export declare const UsdInput: import("react").ForwardRefExoticComponent<Omit<InferComponentProps<import("react").ForwardRefExoticComponent<Omit<Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "type" | "value" | "checked"> & {
    value?: string;
    uncontrolled?: boolean;
} & import("react").RefAttributes<HTMLInputElement> & {
    $error?: string;
}, "ref"> & import("react").RefAttributes<HTMLInputElement>>>, "name"> & import("react").HTMLAttributes<HTMLLabelElement> & {
    label?: import("react").ReactNode;
    optional?: boolean;
    required?: boolean;
} & Pick<HelperTextProps, "helperText"> & {
    name: string;
    allowNegatives?: boolean;
} & import("react").RefAttributes<HTMLInputElement>>;
