import React from "react"; import { type NumericFormatProps } from "react-number-format"; import { type BaseInputProps } from "./commons/input"; export { type NumberFormatValues } from "react-number-format"; export type NumberInputProps = Omit, "size" | "id" | "className"> & { id?: string; className: BaseInputProps["className"]; }; export declare const NumberInput: React.ForwardRefExoticComponent & Omit & { customInput?: React.ComponentType | undefined; } & import("./commons/input").PartialBaseInputProps & import("./commons/input").BaseInputWrapperProps & Omit, "value" | "children" | "className" | "ref" | "id" | "onChange" | "label" | "variant" | "action" | "border" | "info" | "error" | "errorText" | "placeholder" | "loading" | "icon" | "iconPlacement" | "actionPlacement">, "size" | "className" | "id"> & { id?: string | undefined; className: BaseInputProps["className"]; } & React.RefAttributes>; //# sourceMappingURL=number-input.d.ts.map