import { Interaction } from '@serenity-js/core/lib/screenplay'; import { Target } from '../ui/target'; export declare class Select { static theValue(value: string): { from: (target: Target) => Interaction; }; static values(...values: string[]): { from: (target: Target) => Interaction; }; }