import { ToReact } from './helpers.types'; import { ZTextarea } from '../textarea'; export type ZrTextarea_Props = ToReact<'Textarea'>; type ZrTextarea_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: ZrTextarea_Type; export { Namespace as ZrTextarea };