/** * 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, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _ActionsRibbon from 'salesforce-pageobjects/action/pageObjects/actionsRibbon'; /** * Selector: records-highlights2 * Represents the records-highlights2 Lightning web component. * Get the secondary field text or the runtime_platform_actions:actions-ribbon component. * generated from JSON dist/records/highlights2.utam.json * @version 2026-03-09T13:56:36.766Z * @author Salesforce */ declare class Highlights2 extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get the secondary field text * @return String value */ getSecondaryFieldText(fieldIndexStarting1: number): Promise; /** * Wait for primary field to be loaded * @return Self */ waitForLoad(): Promise; /** * Wait for actions content to be loaded * @return Self */ waitForActionsContent(): Promise; getPrimaryFieldContent(ContainerCtor: _ContainerCtor): Promise; getIconContent(ContainerCtor: _ContainerCtor): Promise; getSecondaryFields(ContainerCtor: _ContainerCtor): Promise; getSecondaryFieldContent(ContainerCtor: _ContainerCtor): Promise; getActionsRibbon(): Promise<_ActionsRibbon>; getActionsContent(ContainerCtor: _ContainerCtor): Promise; } export = Highlights2;