import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { HealthInfo } from '../models/HealthInfo'; export declare class SystemApiRequestFactory extends BaseAPIRequestFactory { systemHealth(_options?: Configuration): Promise; systemMetrics(_options?: Configuration): Promise; } export declare class SystemApiResponseProcessor { systemHealthWithHttpInfo(response: ResponseContext): Promise>; systemMetricsWithHttpInfo(response: ResponseContext): Promise>; }