import { io } from "cucumber-messages"; import IFeature = io.cucumber.messages.IFeature; export interface Feature extends IFeature { filename: string; } export interface TestCase { groupedFeatureName: string; isRequired: boolean; requiredBy: string; } export interface TestPlan { versionToTest: string; name: string; testCases: TestCase[]; } export declare function sortTestCasesByFeatureName(testCases: TestCase[]): TestCase[];