import { ToReact } from './helpers.types'; import { ZCheckboxSelect } from '../checkbox-select'; export type ZrCheckboxSelect_Props = ToReact<'CheckboxSelect'>; type ZrCheckboxSelect_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: ZrCheckboxSelect_Type; export { Namespace as ZrCheckboxSelect };