import * as ts from 'typescript'; import { ExtendedRoutesConfig, ExtendedSpecConfig } from '../cli'; import { Tsoa } from '@tsoa/runtime'; import * as express from 'express'; export declare const getSwaggerOutputPath: (swaggerConfig: ExtendedSpecConfig) => string; export declare const registerRouteMockApi: (swaggerConfig: ExtendedSpecConfig, routeConfig: ExtendedRoutesConfig, app: express.Router, compilerOptions?: ts.CompilerOptions | undefined, metadata?: Tsoa.Metadata | undefined) => void;