import * as ast from "../ast/index.js"; import * as files from "../filesystem/index.js"; import { Target, Types } from "./index.js"; export declare class List { readonly targets: Record; constructor(); addAnchor(node: ast.Node): void; addHeading(node: ast.Node, nodeList: ast.NodeList): void; addLinkTarget(file: files.FullFilePath, type: Types, name: string): void; addNodeList(nodeList: ast.NodeList): void; anchorType(file: files.FullFilePath, name: string): string; getAnchor(file: files.FullFilePath, name: string): null | Target; /** provides all the anchors for the given file */ getAnchors(file: files.FullFilePath): string[]; hasAnchor(file: files.FullFilePath, name: string): boolean; hasFile(filePath: files.FullFilePath): boolean; } //# sourceMappingURL=list.d.ts.map