import type { NodeStatus } from '../models/NodeStatus.js'; import type { CancelablePromise } from '../core/CancelablePromise.js'; export declare class ClusterInformationService { /** * Get node statuses in a cluster * Returns a paginated list of information about each node in a cluster. Example request URI(s): * - `https://example.com/confluence/rest/api/cluster/nodes` * - `https://example.com/confluence/rest/api/cluster/nodes?start=0&limit=10` * * @param limit The limit of the number of node statuses to return, this may be restricted by fixed system limit. * @param start The start point of the collection to return. * @returns any Return a list of nodes and their status. * @throws ApiError */ static getClusterNodeStatuses(limit?: string, start?: string): CancelablePromise<{ results?: Array; totalCount?: number; start?: number; limit?: number; size?: number; _links?: { base?: string; context?: string; self?: string; next?: string; prev?: string; }; }>; } //# sourceMappingURL=ClusterInformationService.d.ts.map