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