import { ToReact } from './helpers.types'; import { ZImageStage } from '../image-stage'; export type ZrImageStage_Props = ToReact<'ImageStage'>; type ZrImageStage_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: ZrImageStage_Type; export { Namespace as ZrImageStage };