/** * Test scenario runner */ import { Scenario } from "./types.js"; /** * Normalize C# output for comparison * Strips the header (Generated from, Generated at, WARNING) and normalizes whitespace */ export declare const normalizeCs: (code: string) => string; /** * Run a single test scenario */ export declare const runScenario: (scenario: Scenario) => Promise; //# sourceMappingURL=runner.d.ts.map