import { ToReact } from './helpers.types'; import { ZNumberInput } from '../number-input'; export type ZrNumberInput_Props<_T extends number = number> = ToReact<'NumberInput'>; type ZrNumberInput_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Label: typeof Label; HelpText: typeof HelpText; }; declare const Label: import('react').FC; declare const HelpText: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrNumberInput_Type; export { Namespace as ZrNumberInput };