import type { Request, Response } from 'express';
import type { IUnleashConfig } from '../types/option.js';
import type { IUnleashServices } from '../services/index.js';
import Controller from './controller.js';
import type { HealthCheckSchema } from '../openapi/spec/health-check-schema.js';
export declare class HealthCheckController extends Controller {
    constructor(config: IUnleashConfig, { openApiService }: Pick<IUnleashServices, 'openApiService'>);
    getHealth(_: Request, res: Response<HealthCheckSchema>): Promise<void>;
}
//# sourceMappingURL=health-check.d.ts.map