/** * 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 represents a radio group for selecting a single integer or number, with the ability to navigate and select options using the keyboard for accessibility. * Selector: src-select-single-integer-and-number * generated from JSON dist/feeds/chat/selectSingleIntegerAndNumber.utam.json * @version 2026-03-09T13:56:35.685Z * @author Salesforce */ declare class SelectSingleIntegerAndNumber extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that the radio group is present and visible * @return boolean */ isRadioGroupVisible(): Promise; /** * Get text from the radio option label * @return string */ getRadioOptionLabelText(): Promise; /** * Check that the radio option label is present * @return boolean */ isRadioOptionLabelPresent(): Promise; /** * Returns true if element "radioOptionLabel" present on the page * @return boolean */ verifyRadioOptionLabelPresence(): Promise; /** * Represents all radio options within the group */ getRadioOptions(): Promise<(_BaseUtamElement)[]>; /** * Represents the formatted number if no label is provided for the radio option */ getFormattedNumber(): Promise<(_BaseUtamElement) | null>; } export = SelectSingleIntegerAndNumber;