export type Step = (title: string, body: () => Promise) => Promise; /** * When `@playwright/test` is installed and we're running inside the Playwright * test runner, wraps the body in a `test.step()` so it appears as a labeled * step in the Playwright UI. Otherwise just executes the body directly. */ declare let step: Step; export { step };