import type { AnalyzedDocBlock, AnalyzedExport, AnalyzedProgram } from './model.js'; /*** * Attaches doc blocks and tags to their nearest symbol declarations. */ export declare function associateDocBlocksWithSymbols(program: AnalyzedProgram, docBlocks: readonly AnalyzedDocBlock[], exports: readonly AnalyzedExport[]): AnalyzedExport[];