/** * 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 provides a list of radio buttons to select a single record, with navigation links to view details of the selected record. * Selector: feeds_chat-record-picklist * generated from JSON dist/feeds/chat/recordPicklist.utam.json * @version 2026-03-09T13:56:35.678Z * @author Salesforce */ export default class RecordPicklist extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Click on a record navigator link to navigate to the record's page */ clickRecordNavigator(index: number): Promise; /** * Retrieve the label text of a radio button * @return string */ getRecordLabel(index: number): Promise; /** * Represents the radio buttons for selecting records. */ getRadioButtons(): Promise<(_BaseUtamElement)[]>; }