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