import { SwaggerUiOptions } from 'swagger-ui-express'; export declare enum SwaggerSecurity { BASIC = "basic", BEARER = "bearer", OAUTH2 = "oAuth2", COOKIE = "cookie", APIKEY = "apiKey" } export declare class SwaggerLicense { name?: string; url: string; constructor(props: Partial); } export declare class SwaggerAuth { enable?: boolean; username: string; password: string; constructor(props: Partial); } export declare class SwaggerConfig { enable?: boolean; title?: string; description?: string; version?: string; server?: string; path?: string; options?: SwaggerUiOptions; auth?: SwaggerAuth; license?: SwaggerLicense; security?: SwaggerSecurity[]; constructor(props: Partial); } //# sourceMappingURL=swagger.config.d.ts.map