import type { RuntimeActionRequest } from "#runtime/actions/types.js"; import type { CodeModeInterrupt } from "#shared/code-mode.js"; export declare const CODE_MODE_RUNTIME_ACTION_INTERRUPT_KIND = "eve.runtime-action"; export declare function isCodeModeRuntimeActionInterrupt(interrupt: unknown): boolean; export declare function buildRuntimeActionFromInterrupt(interrupt: CodeModeInterrupt): RuntimeActionRequest; export declare function getRuntimeActionKeyFromInterrupt(interrupt: CodeModeInterrupt): string;