import http from 'http'; import { DubbedOutputInAltFormatRequestPayload } from '../model/dubbedOutputInAltFormatRequestPayload'; import { Languages } from '../model/languages'; import { RequestDubbedOutputInAltFormat200Response } from '../model/requestDubbedOutputInAltFormat200Response'; import { TaskStatus } from '../model/taskStatus'; import { TranscriptDataType } from '../model/transcriptDataType'; import { TranscriptFileFormat } from '../model/transcriptFileFormat'; import { Authentication, Interceptor } from '../model/models'; import { ApiKeyAuth } from '../model/models'; export declare enum DubApiApiKeys { APIKeyHeader = 0 } export declare class DubApi { protected _basePath: string; protected _defaultHeaders: any; protected _useQuerystring: boolean; protected authentications: { default: Authentication; APIKeyHeader: 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: DubApiApiKeys, value: string): void; addInterceptor(interceptor: Interceptor): void; getDubbedOutputInAltFormatStatusById(taskId: string, options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: TaskStatus; }>; getDubbedRunTranscript(runId: number, language: Languages, formatType?: TranscriptFileFormat, dataType?: TranscriptDataType, options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body?: any; }>; requestDubbedOutputInAltFormat(runId: number, language: Languages, dubbedOutputInAltFormatRequestPayload: DubbedOutputInAltFormatRequestPayload, options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: RequestDubbedOutputInAltFormat200Response; }>; }