export { Page } from './Page.mjs'; import { PlaywrightTestArgs, PlaywrightTestOptions, TestInfo } from '@playwright/test'; export { ClickOn, DoubleClickOn, Enter, Expect, ExpectContext, Goto, HoverOver, PressBackspaceOn, PressEnterOn, PressEscapeOn, PressKeyOn, SaveResultAs, Step, WaitForFunction, WaitUntilURLIs, When, WhenContextEquals, setup } from './dsl/actions.mjs'; export { UIComponent } from './UIComponent.mjs'; import './CommandRunner.mjs'; declare const Steps: (testFn: () => void) => ({ page }: PlaywrightTestArgs & PlaywrightTestOptions, testInfo: TestInfo) => Promise; export { Steps };