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