import { APIResource } from "../core/resource.js"; import { APIPromise } from "../core/api-promise.js"; import { RequestOptions } from "../internal/request-options.js"; export declare class Health extends APIResource { /** * Check if Arcade Engine is healthy */ check(options?: RequestOptions): APIPromise; } export interface HealthSchema { healthy?: boolean; /** * Optional: explains why unhealthy */ reason?: string; } export declare namespace Health { export { type HealthSchema as HealthSchema }; } //# sourceMappingURL=health.d.ts.map