import type { Directives } from 'mdast-util-directive'; import type { LinkDirectiveConfig } from '../types.js'; /** * Handles the `link` directive. * Inspired by {@link https://github.com/antfu/markdown-it-magic-link markdown-it-magic-link}. */ export declare function handleLinkDirective(node: Directives, config: LinkDirectiveConfig): void;