import { Sql } from 'postgres'; import { LinkType } from '../links.js'; import { TextParserContext } from '../text_parsers/parsers.js'; export declare function addLinksToMarkdown({ canutesDb, date, linkBaseUrl, linkType, previousContext, text, }: { canutesDb: Sql; date: string; linkBaseUrl: string; linkType: LinkType; previousContext?: TextParserContext; text: string; }): Promise<{ context: TextParserContext; output: string | null; }>;