import { c as Hook, n as StepDefinition } from "../step-definitions-7oDazqCT.js"; import { ParameterType } from "@cucumber/cucumber-expressions"; import { PlaywrightTestArgs, PlaywrightTestOptions, PlaywrightWorkerArgs, PlaywrightWorkerOptions } from "@playwright/test"; type PlaywrightOptions = PlaywrightTestArgs & PlaywrightTestOptions & PlaywrightWorkerArgs & PlaywrightWorkerOptions; /** * @public */ type PlaywrightContext = Record<'string', any> & { playwright: PlaywrightOptions; }; /** * @public */ declare function Feature({ featureText, hooks, stepDefinitions, parameterTypes }: { featureText: string; hooks?: Array>; stepDefinitions: Array>; parameterTypes?: Array>; }): void; export { Feature, PlaywrightContext }; //# sourceMappingURL=index.d.ts.map