import type { TSESTree } from "@typescript-eslint/utils"; import type { NestProvidedFilePath } from "./models/NestProvidedInjectablesMap.js"; import { NestProvidedInjectablesMap } from "./models/NestProvidedInjectablesMap.js"; export declare const nestModuleAstParser: { findNestModuleClass(ast: TSESTree.Program): null | TSESTree.ClassDeclaration; mapModuleDecoratorOptionProperty(moduleDecorator: TSESTree.Decorator, propertyName: string): Set; mapNestModuleDecorator(n: TSESTree.ClassDeclaration, path: NestProvidedFilePath): [NestProvidedFilePath, NestProvidedInjectablesMap] | null; };