/// <reference types="node" />
import { IncomingHttpHeaders } from "http";
/**
 * Fix the issue with the definition of IEndevorRestResponse from 'endevor-for-zowe-cli'.
 * It should be used in our code if possible (temporary solution)
 */
export interface IEndevorResponse {
    returnCode: number;
    reasonCode: number;
    reports: {
        [key: string]: string;
    };
    data: any[];
    messages: string[];
    headers?: IncomingHttpHeaders;
}
