/** * 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 _PrimitiveIcon from 'salesforce-pageobjects/lightning/pageObjects/primitiveIcon'; /** * Selector: lightning-formatted-email * Represents the lightning-formatted-email Lightning web component. * Get the href attribute or the text value. * generated from JSON dist/lightning/formattedEmail.utam.json * @version 2026-03-09T13:56:36.084Z * @author Salesforce */ declare class FormattedEmail extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get formatted email link URL/href * @return string */ getLinkHref(): Promise; /** * Get formatted email link inner text * @return string */ getLinkInnerText(): Promise; getFormattedEmailIcon(): Promise<_PrimitiveIcon | null>; } export = FormattedEmail;