import { ToReact } from './helpers.types'; import { ZCheckbox } from '../checkbox'; export type ZrCheckbox_Props = ToReact<'Checkbox'>; type ZrCheckbox_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: ZrCheckbox_Type; export { Namespace as ZrCheckbox };