/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; import _ActionsContainer from 'salesforce-pageobjects/force/pageObjects/actionsContainer'; /** * Selector: .forceHighlightsStencilDesktop * Represents the force:highlightsStencilDesktop Aura component. * Get the primary field and secondary field by index. Wait for the expected primary field to be displayed. * generated from JSON dist/force/highlightsStencilDesktop.utam.json * @version 2026-03-09T13:56:35.808Z * @author Salesforce */ declare class HighlightsStencilDesktop extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Gets the text of the primary field for the highlights panel * @return the text of the primary field for the highlights panel */ getPrimaryField(): Promise; getActionsContainer(): Promise<_ActionsContainer>; } export = HighlightsStencilDesktop;