import React from 'react'; import type { Element } from 'hast'; export interface MarkdownLinkProps { node?: Element; href?: string; children?: React.ReactNode; className?: string; artifactRunId?: string; /** Existing link component to delegate to for standard URLs */ ExistingLink?: React.ComponentType; } /** * Markdown link component with support for custom URL schemes. * Handles artifact:, image:, store:, document://, and collection: URLs. */ export declare function MarkdownLink({ node, href, children, className, artifactRunId, ExistingLink, ...rest }: MarkdownLinkProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=MarkdownLink.d.ts.map