import type { InstantServerMetricsDTO } from '../models/InstantServerMetricsDTO'; import type { ServerMetricsDTO } from '../models/ServerMetricsDTO'; import type { CancelablePromise } from '../core/CancelablePromise'; export declare class ServerMetricsService { /** * Get server metrics * Get server metrics * @param serverSlug Slug of the server * @returns ServerMetricsDTO Server metrics * @throws ApiError */ static getServerMetrics(serverSlug: string): CancelablePromise; /** * Get instant metrics * Get instant metrics * @param serverSlug Slug of the server * @returns InstantServerMetricsDTO Instant server metrics * @throws ApiError */ static getInstantMetrics(serverSlug: string): CancelablePromise; }