import { LinkType } from '../../links.js'; import { Sql } from 'postgres'; export declare function addLinksOrReferencesToHtmlFile({ canutesDb, date, defaultTextId, htmlFilePath, htmlTransformationsInputDir, htmlTransformationsOutputDir, htmlWithLinksFilePath, htmlWithLinksOrReferencesFilePath, htmlWithLinksTransformationsOutputDir, htmlWithReferencesFilePath, linkBaseUrl, linkType, logIgnoredReferencesTypes, logPartialReferences, logReferences, referredLegifranceTextsInfosFilePath, }: { canutesDb: Sql; date: string; defaultTextId?: string; htmlFilePath: string; htmlTransformationsInputDir?: string; htmlTransformationsOutputDir?: string; htmlWithLinksFilePath?: string; htmlWithLinksOrReferencesFilePath?: string; htmlWithLinksTransformationsOutputDir?: string; htmlWithReferencesFilePath?: string; linkBaseUrl: string; linkType: LinkType; logIgnoredReferencesTypes?: boolean; logPartialReferences?: boolean; logReferences?: boolean; referredLegifranceTextsInfosFilePath?: string; }): Promise;