/** * 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, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; /** * Component that represents a radio group with options for selecting a single date or date-time string. * Selector: src-select-single-date-and-date-time-string * generated from JSON dist/feeds/chat/selectSingleDateAndDateTimeString.utam.json * @version 2026-03-09T13:56:35.684Z * @author Salesforce */ declare class SelectSingleDateAndDateTimeString extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the radio group container is visible * @return boolean */ isRadioGroupContainerVisible(): Promise; /** * Represents individual radio options within the radio group */ getRadioOption(): Promise<(_BaseUtamElement)[]>; /** * Represents the label slot within each radio option */ getRadioOptionLabel(ContainerCtor: _ContainerCtor): Promise; /** * Represents the formatted date-time component for options without a specific label */ getFormattedDateTime(): Promise<(_BaseUtamElement) | null>; } export = SelectSingleDateAndDateTimeString;