import { type ResumeResult, type SandboxSubstrate } from '../_cloud_core/src/index.js'; export interface RunResumeOpts { substrate: SandboxSubstrate; envFilePath: string; registryPath: string; query: string; localSliccVersion: string; pollIntervalMs?: number; pollTimeoutMs?: number; } export declare function runResume(opts: RunResumeOpts): Promise;