import { HealthService } from './health.service';
export declare class HealthController {
    private readonly healthService;
    constructor(healthService: HealthService);
    getHello(): string;
    getHealth(): Promise<{
        status: string;
        database: string;
        checkedAt: string;
    }>;
}
