import type { MissionStoreLocation } from "./types.ts"; export declare const MISSION_STATE_MAX_BYTES: number; export interface MissionWorkflowState { path: string; get(key: string): unknown; set(key: string, value: unknown): void; } export declare function missionStatePath(location: MissionStoreLocation, missionId: string): string; export declare function createMissionWorkflowState(location: MissionStoreLocation, missionId: string): MissionWorkflowState; //# sourceMappingURL=workflow-state.d.ts.map