export interface ICloudCredentials { cluster: string; authString: string; } /** * Create request promise * @param url string target URL (relevant) * @param method request method * @param request request payload (as JSON body) * @param credentials */ export declare function httpRequest(url: string, method: string, request: Object | null, credentials?: ICloudCredentials | null): Promise; /** * Root API for all Legion endpoints */ export declare const legionApiRootURL = "/legion/api"; export interface IApiGroup { }