import { Response } from 'express'; import { HealthService } from './health.service'; export declare class HealthController { private readonly healthService; constructor(healthService: HealthService); getHealth(res: Response): Promise; getDatabaseHealth(res: Response): Promise; }