import { FastifyRequest, FastifyReply } from 'fastify'; import { HealthService } from '../services/health.service.js'; export declare class HealthController { private healthService; constructor(healthService: HealthService); /** * GET / or /v1 or /v1/health */ getHealth(request: FastifyRequest, reply: FastifyReply): Promise; } //# sourceMappingURL=health.controller.d.ts.map