/** * pytest renderer * Produces Python test files using the pytest class-based style. */ import type { ParsedScenario } from '../../../types/test-generator.js'; import type { ThenMatch } from '../then-matchers.js'; export declare function renderPytest(_domain: string, _requirement: string, scenarios: ParsedScenario[], matchesByScenario: ThenMatch[][]): string; //# sourceMappingURL=pytest.d.ts.map