/** * 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, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; import _DynamicRelatedListWithResolvedFields from 'salesforce-pageobjects/lists/pageObjects/dynamicRelatedListWithResolvedFields'; /** * Selector: lst-dynamic-related-list-preview-mobile * Represents the mobile preview implementation of the dynamic related list component * Uses the resolved fields implementation for preview-specific rendering * Handles preview-specific UI layout and interactions * generated from JSON dist/lists/dynamicRelatedListPreviewMobile.utam.json * @version 2026-03-09T13:56:36.324Z * @author Salesforce */ declare class DynamicRelatedListPreviewMobile extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getButton(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getHighlightsIcon(): Promise<(_BaseUtamElement)>; getRelatedListLabel(): Promise<(_BaseUtamElement)>; getRelatedListCount(): Promise<(_BaseUtamElement)>; getDynamicRelatedListWithResolvedFields(): Promise<_DynamicRelatedListWithResolvedFields | null>; } export = DynamicRelatedListPreviewMobile;