import { FeatureCallback } from './types'; declare function runFeatureFile(featureCallback: FeatureCallback, featurePath: string): void; /** * Entrypoint function for @jest-automation. * * Takes a callback which provides Scenarios, ScenarioOutlines, * Backgrounds and other options to build out the step code for gherkin * feature files. * * Example: * Feature(({ Scenario }) => { * Scenario(({Given, When }) => { * Given('something', () => { * ... * }); * }); * }); * ``` * @param featureCallback The actions to take to test your feature file * @param featurePath The path to the feature file. Can be relative to the test file, absolute, or derived from the root of the running project with `~/` */ export declare const Feature: typeof runFeatureFile; export {};