#!/usr/bin/env node import { Config, RoutesConfig, SpecConfig, Tsoa } from '@namecheap/tsoa-runtime'; export interface ExtendedSpecConfig extends SpecConfig { entryFile: Config['entryFile']; noImplicitAdditionalProperties: Exclude; controllerPathGlobs?: Config['controllerPathGlobs']; } export declare const validateSpecConfig: (config: Config) => Promise; export interface ExtendedRoutesConfig extends RoutesConfig { entryFile: Config['entryFile']; noImplicitAdditionalProperties: Exclude; controllerPathGlobs?: Config['controllerPathGlobs']; multerOpts?: Config['multerOpts']; } export interface ConfigArgs { basePath?: string; configuration?: string | Config; } export interface SwaggerArgs extends ConfigArgs { host?: string; json?: boolean; yaml?: boolean; } export declare function runCLI(): void; export declare function generateSpecAndRoutes(args: SwaggerArgs, metadata?: Tsoa.Metadata): Promise;