import type { LauncherFileSystem, ProcessState, StateStore } from "../types.js"; export declare const REMOVED_STATE_PREFIX = ".state-removed-"; export declare function createStateStore(stateDir: string, fs?: LauncherFileSystem): StateStore; export declare function assertValidProcessStateDocument(value: unknown, id: string): ProcessState;