import type { Page, ElementHandle } from "playwright-core"; declare const ExpectTypePage = "Page"; declare const ExpectTypeElementHandle = "ElementHandle"; declare type ExpectType = typeof ExpectTypePage | typeof ExpectTypeElementHandle; export declare type ExpectInputType = Page | ElementHandle; export declare const detectExpectType: (value: ExpectInputType) => ExpectType; interface getElementTextReturn { elementHandle: ElementHandle; selector?: string; expectedValue: string; } export declare type InputArguments = [Page | ElementHandle, string?, (string | any)?, any?]; export declare const getElementText: (args_0: Page | ElementHandle, args_1?: string, args_2?: any, args_3?: any) => Promise; export declare const quote: (val: string | null) => string; export {};