/// import http from 'http'; import { HDChart } from '../model/hDChart'; import { Authentication, Interceptor } from '../model/models'; import { ApiKeyAuth } from '../model/models'; export declare enum DefaultApiApiKeys { APIKeyCookie = 0, APIKeyHeader = 1, APIKeyQuery = 2 } export declare class DefaultApi { protected _basePath: string; protected _defaultHeaders: any; protected _useQuerystring: boolean; protected authentications: { default: Authentication; APIKeyCookie: ApiKeyAuth; APIKeyHeader: ApiKeyAuth; APIKeyQuery: ApiKeyAuth; }; protected interceptors: Interceptor[]; constructor(basePath?: string); set useQuerystring(value: boolean); set basePath(basePath: string); set defaultHeaders(defaultHeaders: any); get defaultHeaders(): any; get basePath(): string; setDefaultAuthentication(auth: Authentication): void; setApiKey(key: DefaultApiApiKeys, value: string): void; addInterceptor(interceptor: Interceptor): void; chartGet(tz: string, localDate: string, localTime: string, lat: number, lng: number, options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: HDChart; }>; saturnReturnGet(tz: string, localDate: string, localTime: string, lat: number, lng: number, options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: HDChart; }>; uranusOppositionGet(tz: string, localDate: string, localTime: string, lat: number, lng: number, options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: HDChart; }>; }