import { type FlowDefinitionsStore } from './store.js'; import type { FlowDefinition } from './types.js'; export interface FlowDefinitionsStoreConformanceCase { name: string; run(store: FlowDefinitionsStore): Promise; } export declare function sampleFlowDefinition(overrides?: Partial): FlowDefinition; export declare const flowDefinitionsStoreConformanceCases: ReadonlyArray;