/** * Vitest renderer * Produces TypeScript test files using the vitest describe/it/expect API. */ import type { ParsedScenario } from '../../../types/test-generator.js'; import type { ThenMatch } from '../then-matchers.js'; export declare function renderVitest(domain: string, requirement: string, scenarios: ParsedScenario[], matchesByScenario: ThenMatch[][]): string; //# sourceMappingURL=vitest.d.ts.map