import { MusterEvent, Scope } from '../types/graph'; export declare function createScope(options?: { debug?: boolean; }): Scope; export declare function createChildScope(parent: Scope, options?: { redispatch?: ((event: MusterEvent) => MusterEvent | undefined) | true; onSubscribe?: () => void; onUnsubscribe?: () => void; }): Scope;