/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _BaseRecordPicker from 'salesforce-pageobjects/runtime_copilot_base/pageObjects/baseRecordPicker'; /** * Component that allows users to pick records from a limited set of entities, potentially with multi-selection capabilities. It is enabled or disabled based on a property, and it fetches entity information asynchronously. * Selector: runtime_copilot_base-record-picker-limited-entities * generated from JSON dist/runtime_copilot_base/recordPickerLimitedEntities.utam.json * @version 2026-03-09T13:56:37.318Z * @author Salesforce */ declare class RecordPickerLimitedEntities extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); waitForRecordPicker(): Promise<_BaseRecordPicker>; /** * Represents the record picker custom component which allows users to select records. */ getRecordPicker(): Promise<_BaseRecordPicker | null>; } export = RecordPickerLimitedEntities;