import type { HealthCheck, HealthMonitoring } from '../../interfaces/core.js'; export type { HealthCheck }; /** * Local health monitoring implementation * Single responsibility: provide health check endpoint */ export declare class LocalHealthMonitoring implements HealthMonitoring { private readonly providerName; constructor(providerName: string); healthCheck(): Promise; } //# sourceMappingURL=health.d.ts.map