/** * Copyright (c) 2025, Salesforce, Inc. * All rights reserved. * For full license text, see the LICENSE file or https://utam.dev/salesforce/license */ import { Driver as _Driver, Element as _Element, Locator as _Locator, BaseUtamElement as _BaseUtamElement, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; /** * Component that displays a radio group for selecting a single option from a list of primitive type picklist options. * Selector: src-select-single-text * generated from JSON dist/feeds/chat/selectSingleText.utam.json * @version 2026-03-09T13:56:35.689Z * @author Salesforce */ declare class SelectSingleText extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the radio group container is visible * @return boolean */ isRadioGroupContainerVisible(): Promise; /** * Get the text of the option label * @return string */ getOptionLabelText(): Promise; /** * Check if the option label is present * @return boolean */ isOptionLabelPresent(): Promise; /** * Represents all picklist options as custom elements */ getPicklistOptions(): Promise<(_BaseUtamElement)[]>; /** * Represents formatted text for picklist option value when label is not provided */ getFormattedTextValue(): Promise<(_BaseUtamElement) | null>; } export = SelectSingleText;