/** * 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'; /** * Selector: runtime_copilot_base-input-record-selection * generated from JSON dist/runtime_copilot_base/inputRecordSelection.utam.json * @version 2026-03-09T13:56:37.276Z * @author Salesforce */ export default class InputRecordSelection extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Click on a record view link to navigate to the record's page. */ clickViewLink(): Promise; /** * Click on a record to select and view card records */ selectInputRadio(): Promise; /** * Retrieve the label text of a radio button * @return string */ getRecordLabel(): Promise; /** * Represents the radio buttons for selecting records. */ getRadioButtons(): Promise<(_BaseUtamElement)>; }