/** * 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'; /** * Selector: force-record-avatar. * Represents the force-record-avatar Lightning web component. * Get the image title, source or alt text. * generated from JSON dist/force/recordAvatar.utam.json * @version 2026-03-09T13:56:35.870Z * @author Salesforce */ export default class RecordAvatar extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Gets the title of the image * @return the title of the image */ getImageTitle(): Promise; /** * Gets the alt-text of the image * @return the alt-text of the image */ getAlternativeText(): Promise; /** * Gets the value of the src attribute of the image * @return the value of the src attribute of the image */ getImageSource(): Promise; }