import { CustomTag, Reference, References } from "../../model"; import { ASTNode } from "../json/ast-node"; import { StringASTNode } from "../json/string-ast-node"; export declare const generateEmptyReferences: () => References; export declare const collectReferencesFromStringNode: (node: StringASTNode, customTag: CustomTag) => Reference[]; export declare const collectReferences: (node: ASTNode) => References;