import { ToReact } from './helpers.types'; import { ZStage } from '../stage'; export type ZrStage_Props = ToReact<'Stage'>; type ZrStage_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Content: typeof Content; Header: typeof Header; }; declare const Content: import('react').FC; declare const Header: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrStage_Type; export { Namespace as ZrStage };