import * as ts from 'typescript'; import { ExtendedRoutesConfig, ExtendedSpecConfig } from '../cli'; import { Tsoa } from '@tsoa/runtime'; export declare const getSwaggerOutputPath: (swaggerConfig: ExtendedSpecConfig) => string; export declare const generateSpec: (swaggerConfig: ExtendedSpecConfig, routeConfig: ExtendedRoutesConfig, compilerOptions?: ts.CompilerOptions | undefined, ignorePaths?: string[] | undefined, metadata?: Tsoa.Metadata | undefined) => Promise;