import { AnyFunction, GherkinStepKeyword } from '../stepDefinition'; import { StepConstructorOptions, StepDefinitionArgs } from './shared'; export type CucumberStyleStepFn = (this: World, ...args: any[]) => unknown; export type CucumberStyleStepCtor = (...args: StepDefinitionArgs) => StepFn; export declare function cucumberStepCtor(keyword: GherkinStepKeyword, { customTest, worldFixture, defaultTags }: StepConstructorOptions): (...args: StepDefinitionArgs) => StepFn; //# sourceMappingURL=cucumberStyle.d.ts.map