import React from 'react'; export interface MarkdownImageProps { node?: any; src?: string; alt?: string; className?: string; artifactRunId?: string; /** Existing image component to delegate to for standard URLs */ ExistingImg?: React.ComponentType; } /** * Markdown image component with support for custom URL schemes. * Handles artifact: and image: URLs with loading states and error handling. */ export declare function MarkdownImage({ node, src, alt, className, artifactRunId, ExistingImg, ...rest }: MarkdownImageProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=MarkdownImage.d.ts.map