import { PlayCtx } from '../../types/testing.js';
/**
 * Factory to get select testing utils
 * @param context the story context
 */
export declare const getTestingUtilsSelect: (context: PlayCtx) => {
    selectOption: ({ labelText, optionName, container, }: {
        labelText: string;
        optionName: string;
        container?: HTMLElement;
    }) => Promise<void>;
};
