import { Clickable, ClickableOptions } from './Clickable';
export type SelectTagOptions = ClickableOptions;
export declare class SelectTag extends Clickable {
    select(label: string | RegExp | {
        value?: string;
        label?: string;
        index?: number;
        contains?: string;
    }, options?: {
        timeout?: number;
    }): Promise<void>;
    label(): Promise<string | undefined>;
    set(label: string | RegExp | {
        contains: string;
    }, options?: {
        timeout?: number;
    }): Promise<void>;
    private locatorWithOption;
    hasOption(label: string): Promise<boolean>;
    shouldHaveOption(label: string, options?: {
        timeout?: number;
    }): Promise<void>;
    selectOption(label: string, options?: {
        timeout?: number;
    }): Promise<void>;
}
//# sourceMappingURL=SelectTag.d.ts.map