/** * 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 _ViewComponent from 'salesforce-pageobjects/runtime_copilot_base/pageObjects/viewComponent'; /** * This component serves as an action block that navigates to a feature page with a list of records. It is not directly interactable by the user but is used in the context of a larger UI where actions are dynamically determined based on record data. * Selector: runtime-copilot-base-block-view-more-records-action * generated from JSON dist/runtime_copilot_base/blockViewMoreRecordsAction.utam.json * @version 2026-03-09T13:56:37.262Z * @author Salesforce */ declare class BlockViewMoreRecordsAction extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); waitForViewComponent(): Promise<_ViewComponent>; getViewComponent(): Promise<_ViewComponent | null>; } export = BlockViewMoreRecordsAction;