import React from "react"; import { type InputNumberProps as InputNumberLegacyProps, type InputNumberRef as InputNumberLegacyRef } from "./InputNumber"; import { type InputNumberRebuiltProps, type InputNumberRebuiltRef } from "./InputNumber.rebuilt.types"; export type InputNumberProps = ({ version: 2; } & InputNumberRebuiltProps) | ({ version?: 1; } & InputNumberLegacyProps); type InputNumberRef = InputNumberRebuiltRef | InputNumberLegacyRef; export declare const InputNumber: React.ForwardRefExoticComponent>; export type { InputNumberRef, InputNumberRebuiltProps, InputNumberLegacyProps };