import { ToReact } from './helpers.types'; import { ZChipsSet } from '../chips-set'; export type ZrChipsSet_Props = ToReact<'ChipsSet'>; type ZrChipsSet_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: ZrChipsSet_Type; export { Namespace as ZrChipsSet };