import { INestApplication } from '@nestjs/common'; import { ApplicationConfig } from '@nestjs/core'; import { InstanceWrapper } from '@nestjs/core/injector/instance-wrapper'; import { InstanceToken, Module } from '@nestjs/core/injector/module'; import { OpenAPIObject, SwaggerDocumentOptions } from './interfaces'; import { SchemaObject } from './interfaces/open-api-spec.interface'; export declare class SwaggerScanner { private readonly transfomer; private readonly schemaObjectFactory; private readonly explorer; scanApplication(app: INestApplication, options: SwaggerDocumentOptions): Omit; scanModuleRoutes(routes: Map, modulePath: string | undefined, globalPrefix: string | undefined, applicationConfig: ApplicationConfig, operationIdFactory?: (controllerKey: string, methodKey: string) => string): Array & Record<'root', any>>; getModules(modulesContainer: Map, include: Function[]): Module[]; addExtraModels(schemas: Record, extraModels: Function[]): void; private getGlobalPrefix; private getModulePathMetadata; }