import { Namespace } from 'cls-hooked'; export declare class NamespaceMock implements Namespace { readonly context: { [key: string]: any; }; readonly active: { [key: string]: any; }; set(key: string, value: T): T; get(key: string): any; run(fn: Function): any; bind(fn: F, context?: any): F; bindEmitter(fn: any): void; runAndReturn(fn: (...args: any[]) => T): T; runPromise(fn: (...args: any[]) => Promise): Promise; createContext(): any; enter(context: any): void; exit(context: any): void; } export declare const namespace: NamespaceMock; //# sourceMappingURL=NamespaceMock.d.ts.map