/** * 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: lightning-formatted-rich-text * Represents the lightning-formatted-rich-text Lightning web component. * Get the text value. * generated from JSON dist/lightning/formattedRichText.utam.json * @version 2026-03-09T13:56:36.092Z * @author Salesforce */ export default class FormattedRichText extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get the formatted rich text content value * @return string */ getInnerText(): Promise; }