import type { SkillPackage } from '../skill/types.js'; import { type RunStorageLayout } from './storage-layout.js'; import type { RunState } from './types.js'; export declare function parseStoredRunStateValue(value: unknown): RunState; export declare function startRunWithStorage(pkg: SkillPackage, runId: string, skillHash: string, storage: Readonly): RunState; export declare function readRunStateAt(changeDir: string, storage: Readonly): Promise; export declare function writeRunStateAt(changeDir: string, state: RunState, storage: Readonly): Promise; export declare function removeRunStateAt(changeDir: string, storage: Readonly): Promise; //# sourceMappingURL=storage-run.d.ts.map