import type { StepBody, StepOptions } from './types/internal'; /** * Declares a test step (could calls Playwright's `test.step` function inside). */ export declare const step: (name: string, body?: StepBody, options?: StepOptions) => Promise;