import { ToReact } from './helpers.types'; import { Content_Props } from '../react/sub-components.types'; import { ZFigure } from '../figure'; export type ZrFigure_Props = ToReact<'Figure'>; type ZrFigure_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Caption: typeof Caption; }; declare const Caption: { (props: Content_Props): import("react/jsx-runtime").JSX.Element; displayName: string; }; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrFigure_Type; export { Namespace as ZrFigure };