/** * 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 _RecordAvatar from 'salesforce-pageobjects/force/pageObjects/recordAvatar'; /** * Selector: .highlights-icon-container * Represents the records-highlights-icon-container Lightning web component. * Get image source or image title. Check if the highlights icon is present. * generated from JSON dist/records/highlightsIcon.utam.json * @version 2026-03-09T13:56:36.774Z * @author Salesforce */ declare class HighlightsIcon extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get the image title * @return String value */ getImageTitle(): Promise; /** * Check if the highlights icon is present * @return boolean value */ isHighlightsIconPresent(): Promise; /** * Get the image source * @return String value */ getImageSource(): Promise; getAvatar(): Promise<_RecordAvatar>; } export = HighlightsIcon;