import { ElementHandle } from 'playwright'; type HTMLElementMethods = Pick; type HTMLInputElementMethods = Pick; export type MethodName = keyof HTMLElementMethods | keyof HTMLInputElementMethods; export declare function invokeMethodOnHandle(methodName: MethodName, selector: ElementHandle | undefined | null, selectorName: string): Promise; export {};