import { Browser, Locator, Page } from '@playwright/test'; export type ConfirmInputValue = { inputLocator: Locator; inputValue: string; confirmLocator: Locator; }; export declare function findPageWithTitleInBrowser(browser: Browser, expectedTitle: string): Promise; export declare function performBrowserLogin(page: Page, title: string | RegExp, usernameAction: ConfirmInputValue, passwordAction: ConfirmInputValue, postLoginAction: (myPage: Page) => Promise, options?: { screenshotsPath: string | undefined; }): Promise; export declare function startChromium(port: string, tracesPath: string, args?: string[]): Promise; export declare function getEntryFromLogs(page: Page, filter: RegExp, regex: RegExp, lineContains?: string): Promise; export declare function getEntryFromConsoleLogs(page: Page, filter: RegExp, regex: RegExp, checkString: string, timeout?: number): Promise; export declare function handleCookies(page: Page, iframTitle: string, buttonName: string, timeout: number): Promise; export declare function checkLocatorExistence(locator: Locator, timeout?: number): Promise;