/// import http = require('http'); import { Version } from '../model/version'; import { Authentication, Interceptor } from '../model/models'; export declare enum VersionApiApiKeys { } export declare class VersionApi { protected _basePath: string; protected _defaultHeaders: any; protected _useQuerystring: boolean; protected authentications: { 'default': Authentication; }; protected interceptors: Interceptor[]; constructor(basePath?: string); useQuerystring: boolean; basePath: string; defaultHeaders: any; setDefaultAuthentication(auth: Authentication): void; setApiKey(key: VersionApiApiKeys, value: string): void; addInterceptor(interceptor: Interceptor): void; getVersion(options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: Version; }>; }