import { ToReact } from './helpers.types'; import { ZBadge } from '../badge'; export type ZrBadge_Props = ToReact<'Badge'>; type ZrBadge_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Content: typeof Content; }; declare const Content: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrBadge_Type; export { Namespace as ZrBadge };