import { ToReact } from './helpers.types'; import { ZTagsSelect } from '../tags-select'; export type ZrTagsSelect_Props = ToReact<'TagsSelect'>; type ZrTagsSelect_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: ZrTagsSelect_Type; export { Namespace as ZrTagsSelect };