import { TestSuite, TestCase } from "./types"; /** * Parse YAML test file into TestSuite */ export declare function parseTestFile(filePath: string): TestSuite; /** * Validate a test case */ export declare function validateTestCase(testCase: TestCase): void; //# sourceMappingURL=parser.d.ts.map