import { ToReact } from './helpers.types'; import { ZRadioSelect } from '../radio-select'; export type ZrRadioSelect_Props<_T extends string = string> = ToReact<'RadioSelect'>; type ZrRadioSelect_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Label: typeof Label; HelpText: typeof HelpText; Option: typeof Option; }; declare const Label: import('react').FC; declare const HelpText: import('react').FC; declare const Option: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrRadioSelect_Type; export { Namespace as ZrRadioSelect };