import { default as React } from 'react';
export declare const NumberInput: React.ForwardRefExoticComponent<Omit<import('../input-group/types.js').InputGroupProps, "children" | "inline" | "render"> & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type" | "children"> & {
    align?: "left" | "right";
    width?: string;
    inputClassName?: string;
    stepper?: boolean;
} & React.RefAttributes<HTMLInputElement>>;
