import { HealthService } from './health.service';
export declare class HealthController {
    private readonly healthService;
    constructor(healthService: HealthService);
    check(): Promise<import("./health.service").HealthStatus>;
    detailedCheck(): Promise<import("./health.service").DetailedHealthStatus>;
    readiness(): Promise<{
        ready: boolean;
        message?: string;
    }>;
    liveness(): Promise<{
        alive: boolean;
    }>;
}
