import type { Locator } from '@playwright/test'; import type { Selector } from '../types/internal'; type Options = Parameters[1]; /** * Selects an `option` in `select` element. */ export declare const selectOption: (selector: Selector, value: string | readonly string[], options?: Options) => Promise; export {};