import { ZTextarea_Events, ZTextarea_Props, ZTextarea_Slots } from '@zurich/dev-utils/code/Textarea'; import { ToReactSlots } from './helperTypes'; export type ReactTextarea_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 ReactTextarea_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: ReactTextarea_Type; export { Namespace as ReactTextarea };