import * as types from './types';
export declare class NoopContextManager implements types.ContextManager {
    active(): types.Context;
    with<T extends (...args: unknown[]) => ReturnType<T>>(_context: types.Context, fn: T): ReturnType<T>;
    bind<T>(target: T, _context?: types.Context): T;
    enable(): this;
    disable(): this;
}
//# sourceMappingURL=NoopContextManager.d.ts.map