export interface MarkdownFigureProps { src?: string; alt?: string; caption: string; className?: string; artifactRunId?: string; } /** * Markdown figure component for images with captions. * Wraps the image in a
element with a
. * * Usage in markdown: ![alt text](image-url "Caption text") */ export declare function MarkdownFigure({ src, alt, caption, className, artifactRunId, }: MarkdownFigureProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=MarkdownFigure.d.ts.map