import { RestCommand } from "../../types.js"; //#region src/rest/commands/server/health.d.ts type ServerHealthOutput = { status: 'ok' | 'warn' | 'error'; releaseId?: string; serviceId?: string; checks?: { [name: string]: Record[]; }; }; /** * Get the current health status of the server. * @returns The current health status of the server. */ declare const serverHealth: () => RestCommand; //#endregion export { ServerHealthOutput, serverHealth }; //# sourceMappingURL=health.d.ts.map