import { ToReact } from './helpers.types'; import { ZBooleanIcon } from '../boolean-icon'; export type ZrBooleanIcon_Props = ToReact<'BooleanIcon'>; type ZrBooleanIcon_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: ZrBooleanIcon_Type; export { Namespace as ZrBooleanIcon };