import React from 'react'; /** * NumberBox is a numeric input component that wraps TextBox. * It provides real-time comma formatting, full-width digit conversion, * and ignores invalid characters. * * The `onChange` callback receives the raw numeric string without commas. */ export declare const NumberBox: React.ForwardRefExoticComponent & { onChange?: (value: string) => void; textAlign?: "left" | "right"; } & React.RefAttributes>;