/** * Test scenario generator — creates test scenarios from exploration data. * * Reads a NavigationGraph and generates flow_run-compatible test steps * for all unique paths through the app. */ import type { ExplorationResult, GeneratedTestSuite, TestFormat } from "./types.js"; /** * Generate test scenarios from exploration data. */ export declare function generateTests(exploration: ExplorationResult, format?: TestFormat): GeneratedTestSuite; //# sourceMappingURL=generator.d.ts.map