import { OnModuleDestroy } from '@nestjs/common'; export interface WorkerHealthCheckConfig { port: number; hostname?: string; route?: string; } export declare class WorkerHealthService implements OnModuleDestroy { private server; initializeHealthCheckEndpoint(config: WorkerHealthCheckConfig): Promise; onModuleDestroy(): any; }