/// import http from 'http'; import { Issue } from '../model/issue'; import { PaginatedIssueList } from '../model/paginatedIssueList'; import { Authentication, Interceptor } from '../model/models'; import { ApiKeyAuth } from '../model/models'; export declare enum IssuesApiApiKeys { tokenAuth = 0 } export declare class IssuesApi { protected _basePath: string; protected _defaultHeaders: any; protected _useQuerystring: boolean; protected authentications: { default: Authentication; tokenAuth: 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: IssuesApiApiKeys, value: string): void; addInterceptor(interceptor: Interceptor): void; issuesList(accountToken?: string, cursor?: string, endDate?: string, endUserOrganizationName?: string, firstIncidentTimeAfter?: Date, firstIncidentTimeBefore?: Date, includeMuted?: string, integrationName?: string, lastIncidentTimeAfter?: Date, lastIncidentTimeBefore?: Date, pageSize?: number, startDate?: string, status?: 'ONGOING' | 'RESOLVED', options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: PaginatedIssueList; }>; issuesRetrieve(id: string, options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: Issue; }>; }