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