/** * 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 time selection, with options that can be checked, unchecked, and navigated through keyboard interactions. * Selector: src-select-single-time * generated from JSON dist/feeds/chat/selectSingleTime.utam.json * @version 2026-03-09T13:56:35.690Z * @author Salesforce */ declare class SelectSingleTime extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that radio group container is present and visible * @return boolean */ isRadioGroupContainerVisible(): Promise; /** * Get text from the label of a radio option if present * @return string */ getRadioOptionLabel(): Promise; /** * Check if the label for a radio option is present * @return boolean */ isRadioOptionLabelPresent(): Promise; /** * Returns true if element "optionLabel" present on the page * @return boolean */ verifyOptionLabelPresence(): Promise; /** * Represents all radio button options inside the radio group */ getRadioOptions(): Promise<(_BaseUtamElement)[]>; /** * Represents the formatted time display when no label is provided for an individual radio option */ getTimeFormatted(): Promise<(_BaseUtamElement) | null>; } export = SelectSingleTime;