import { IStep } from "../Step/Step"; export interface IScenario { id: number; name: string; steps: IStep[]; isOutline?: boolean; nextScenarioId?: number; } export interface IFeature { name: string; description: string; backgroundSteps: IStep[]; scenarios: IScenario[]; } export declare function loadFeatureFile(featurePath: string): Promise; export declare function resetId(): void; export declare function loadFeature(featureFileContent: string): IFeature;