import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext } from '../http/http'; import { V1APIGroup } from '../models/V1APIGroup'; /** * no description */ export declare class InternalApiserverApiRequestFactory extends BaseAPIRequestFactory { /** * get information of a group */ getAPIGroup(_options?: Configuration): Promise; } export declare class InternalApiserverApiResponseProcessor { /** * Unwraps the actual response sent by the server from the response context and deserializes the response content * to the expected objects * * @params response Response returned by the server for a request to getAPIGroup * @throws ApiException if the response code was not in [200, 299] */ getAPIGroup(response: ResponseContext): Promise; }