import StateControllerI from '@sociably/core/base/StateController'; import type { SociablyThread, SociablyNode } from '@sociably/core'; import { ServiceScope } from '@sociably/core/service'; import type { AnyScriptLibrary, CallStatus, InputOfScript, ReturnOfScript, YieldOfScript } from './types.js'; type RuntimeResult = { finished: boolean; returnValue: undefined | Return; yieldValue: undefined | Yield; contents: SociablyNode; }; export declare class ScriptRuntime