export type LinkResolution = { status: "file"; path: string; } | { status: "missing"; path: string; } | { status: "directory"; path: string; } | { status: "unsupported"; }; /** Existing local files only. Fragments are validated, then open at the file top. */ export declare const resolveMarkdownLink: (href: string, baseDir: string, currentPath?: string) => LinkResolution; export interface MarkdownLink { /** Link text as written in the source. */ text: string; href: string; } export declare const markdownLinks: (line: string) => MarkdownLink[]; //# sourceMappingURL=markdown-links.d.ts.map