/** * 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'; import _PrimitiveTypePicklist from 'salesforce-pageobjects/runtime_copilot_base/pageObjects/primitiveTypePicklist'; import _FormattedNumber from 'salesforce-pageobjects/lightning/pageObjects/formattedNumber'; /** * Component that allows users to select a single integer or number from a group of options displayed as radio buttons. It also supports keyboard navigation for accessibility. * Selector: runtime_copilot_base-select-single-integer-and-number * generated from JSON dist/runtime_copilot_base/selectSingleIntegerAndNumber.utam.json * @version 2026-03-09T13:56:37.330Z * @author Salesforce */ export default class SelectSingleIntegerAndNumber extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Checks if the radio group is visible to the user * @return boolean */ isRadioGroupVisible(): Promise; /** * Retrieves the text label of a radio button * @return string * @param index element index starting from 1 */ getRadioButtonLabel(index: number): Promise; /** * Represents all radio button options within the radio group. */ getRadioButtons(): Promise<_PrimitiveTypePicklist[]>; /** * Represents all radio button options within the radio group. * @param index element index starting from 1 */ getRadioButtonByIndex(index: number): Promise<(_BaseUtamElement)>; /** * Represents the formatted number displayed when there is no custom label for the option. * @param index element index starting from 1 */ getFormattedNumber(index: number): Promise<_FormattedNumber | null>; }