/// /// import * as http from 'http'; import { Configuration } from '../../../configuration'; import { ApplicableHandler } from '../handler'; export declare const log: import("debug").Debugger; export declare class HealthHandler implements ApplicableHandler { private configuration; constructor(configuration: Configuration); handle(request: http.IncomingMessage, response: http.ServerResponse, next: Function, params: { id: string; }): void; isApplicable(request: http.IncomingMessage): boolean; }