import { Cookie } from '@playwright/test'; import { Action, Actor } from '@testla/screenplay'; /** * Action Class. Add Cookies to the Browser. */ export declare class Add extends Action { private cookies; private constructor(); /** * Add the cookies to the browser. * * @param {Actor} actor Actor performing this action * @return {any} Adds cookies into this browser context. */ performAs(actor: Actor): Promise; /** * Add the specified cookies. * * @param {Cookie} cookies the cookies to add. * @return {Add} new Add instance */ static cookies(cookies: Cookie[]): Add; }