import { ToReact } from './helpers.types'; import { HelpText_Props, Label_Props } from '../react/sub-components.types'; import { ZTextInput } from '../text-input'; export type ZrTextInput_Props<_T extends string = string> = ToReact<'TextInput'>; type ZrTextInput_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Label: React.FC; HelpText: React.FC; }; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrTextInput_Type; export { Namespace as ZrTextInput };