import { AbstractGenericService } from '../service/abstract.generic.service';
import { ServiceParams, ServiceResponse } from '../service/IGeneric.service';
import { IHealth } from './health.interface';
export declare class HealthCheckService extends AbstractGenericService {
    private health;
    constructor(health: IHealth, params?: ServiceParams);
    execute(type: string, data: any): Promise<ServiceResponse>;
    healthCheck(): Promise<ServiceResponse>;
}
