import { ZTextInput_Events, ZTextInput_Props, ZTextInput_Slots } from '@zurich/dev-utils/code/TextInput'; import { ToReactSlots } from './helperTypes'; export type ReactTextInput_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 ReactTextInput_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: ReactTextInput_Type; export { Namespace as ReactTextInput };