export declare function splitCodeBlocks(md: string): string[]; interface Result { doesExist: boolean; sourceNumber: string | null; sourceLine: number | null; } export declare function findCodeInReferences(codeLines: string[], referenceChunks: Array): Result[]; type CommentFormat = (sourceNumber: number | null, sourceLine: number | null) => string; export declare function annotateMarkdown(md: string, codeLines: string[], referenceChunks: Array, commentFormat: CommentFormat): string; export {};