/** * 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'; /** * A component that conditionally displays a spinner or a list of records with configurable display types and preferences. * Selector: runtime_copilot_base-view-record-list-internal * generated from JSON dist/runtime_copilot_base/viewRecordListInternal.utam.json * @version 2026-03-09T13:56:37.371Z * @author Salesforce */ declare class ViewRecordListInternal extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Represents a spinner displayed while loading. */ getSpinner(): Promise<(_BaseUtamElement) | null>; /** * Represents the list of records displayed once loading is complete. */ getRecordList(ContainerCtor: _ContainerCtor): Promise; getContainer(ContainerCtor: _ContainerCtor): Promise; } export = ViewRecordListInternal;