import { ToReact } from './helpers.types'; import { ZTag } from '../tag'; export type ZrTag_Props = ToReact<'Tag'>; type ZrTag_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Content: typeof Content; }; declare const Content: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrTag_Type; export { Namespace as ZrTag };