import { type CreateVersionOptions, type FlowDefinitionListFilter, type FlowDefinitionVersion, type FlowDefinitionsStore } from '../store.js'; import type { FlowDefinition } from '../types.js'; export declare class MemoryFlowDefinitionsStore implements FlowDefinitionsStore { private readonly versions; private readonly digestIndex; createVersion(def: FlowDefinition, options?: CreateVersionOptions): Promise; setActive(name: string, versionId: string): Promise; getActive(name: string): Promise; getVersion(versionId: string): Promise; list(filter?: FlowDefinitionListFilter): Promise; archive(name: string): Promise; }