import type { CancelablePromise } from '../core/CancelablePromise'; export declare class HealthService { /** * @returns any The Health Check is successful * @throws ApiError */ static healthControllerCheckSelf(): CancelablePromise<{ status?: string; info?: Record> | null; error?: Record> | null; details?: Record>; }>; }