/// export * from './enginesApi'; import { EnginesApi } from './enginesApi'; export * from './healthApi'; import { HealthApi } from './healthApi'; export * from './versionApi'; import { VersionApi } from './versionApi'; import * as fs from 'fs'; import * as http from 'http'; export declare class HttpError extends Error { response: http.IncomingMessage; body: any; statusCode?: number | undefined; constructor(response: http.IncomingMessage, body: any, statusCode?: number | undefined); } export interface RequestDetailedFile { value: Buffer; options?: { filename?: string; contentType?: string; }; } export declare type RequestFile = string | Buffer | fs.ReadStream | RequestDetailedFile; export declare const APIS: (typeof EnginesApi | typeof HealthApi | typeof VersionApi)[];