import { Declaration, Module, Project, ReferenceType } from "."; export declare function forEachModule(module: Module, cb: (mod: Module) => RESULT | undefined): RESULT | undefined; export declare function findDeclWithModule(name: string, module: Module): Declaration | undefined; export declare function findDeclOfType(name: string, module: Module, kind: string): Declaration | undefined; export declare function findOfKindInModule(name: string, module: Module, kind: "class" | "interface" | "enum" | "function" | "type" | "constant" | "module" | string): ReferenceType | undefined; export declare function findByNameWithModule(name: string, module: Module): ReferenceType | undefined; export declare function findByPath(name: string, path: Array, project: Project): ReferenceType | undefined; //# sourceMappingURL=utils.d.ts.map