import { ZNumberInput_Events, ZNumberInput_Props, ZNumberInput_Slots } from '@zurich/dev-utils/code/NumberInput'; import { ToReactSlots } from './helperTypes'; export type ReactNumberInput_Props = ToReactSlots & Partial<{ onChange: (payload: Required['change'], e: React.FormEvent) => void; onEnter: (e: React.KeyboardEvent) => void; onBlur: (e: React.FocusEvent) => void; onRestarted: (e: Event) => void; onValidated: (payload: boolean) => void; }>; type ReactNumberInput_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { HelpText: typeof HelpText; Label: typeof Label; }; declare const Label: import('react').FC; declare const HelpText: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ReactNumberInput_Type; export { Namespace as ReactNumberInput };