import type { CamofoxClient } from "../client/camofox-client.js"; import type { StateManager } from "../state.js"; import type { Config } from "../types.js"; import type { HealthCheckResult } from "../types.js"; export declare class HealthService { private client; private state; private config; private checkInterval; constructor(client: CamofoxClient, state: StateManager, config: Config); /** Start periodic health checking */ startPeriodicCheck(intervalMs?: number): void; /** Stop periodic health checking */ stopPeriodicCheck(): void; /** Check health of all accounts */ checkAllAccounts(): Promise; /** Check if CamoFox browser is reachable */ private checkCamofox; } //# sourceMappingURL=health.d.ts.map