import type { Scope, IntentContext } from "intentx-core-z"; export type FastContextAdapter = { get(): T; set(fn: (s: T) => void): void; }; export type IntentRuntimeOptions = { emit: (type: string, payload?: any) => Promise; signal?: AbortSignal; }; export declare function bindFastContext(context: FastContextAdapter):

(payload: P, scope: Scope, options: IntentRuntimeOptions) => IntentContext;