export type MarkdownLinkClickHandler = (href: string) => void; export type MarkdownLinkContextValue = { onMarkdownLinkClick?: MarkdownLinkClickHandler; }; export declare const MarkdownLinkContext: import("react").Context;