import { ElementHandle } from 'playwright'; export interface SelectOptionInfo { value: string; label: string; selected: boolean; } export declare function getAllOptionsOfHandle(selector: ElementHandle | null | undefined, name: string): Promise;