import { RequestHandler } from "express"; import { PathParams } from "express-serve-static-core"; export declare class APIServer { private serverName; private swaggerOptions; private server; constructor(name: string, swaggerOptions: any, processListenerCount: number); addPassportStrategy(strategy: any): void; use(path: PathParams, ...handlers: RequestHandler[]): void; get(path: PathParams, ...handlers: RequestHandler[]): void; post(path: PathParams, ...handlers: RequestHandler[]): void; run(): void; }