import { Action, Actor } from '@testla/screenplay'; import { Response } from '@playwright/test'; /** * Action Class. Navigate to a URL using the specified url string. */ export declare class Navigate extends Action { private url; private constructor(); /** * navigate to the specified URL. * * @param {Actor} actor Actor performing this action * @return {any} Returns the main resource response. */ performAs(actor: Actor): Promise; /** * Use the page to navigate to a certain URL. * * @param {string} url the url which should be accessed. * @return {Navigate} new Navigate instance */ static to(url: string): Navigate; }