import { Singleton } from '@ephox/katamari'; import * as HttpHandler from './HttpHandler'; import type * as Shared from './Shared'; export interface MockHttpHook { readonly state: Singleton.Value; } export interface MockHttpHookConfig { readonly logLevel?: Shared.LogLevel; readonly name?: string; } export declare const mockHttpHook: (handlers: (state: Singleton.Value) => HttpHandler.HttpHandler[], config?: MockHttpHookConfig) => MockHttpHook; //# sourceMappingURL=MockHttpHook.d.ts.map