/** * 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-phone * Represents the lightning-formatted-phone Lightning web component. * Get the text value. * generated from JSON dist/lightning/formattedPhone.utam.json * @version 2026-03-09T13:56:36.091Z * @author Salesforce */ declare class FormattedPhone extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get the formatted phone number display value with tel: URL scheme as text * @return string */ getInnerText(): Promise; /** * Get the unicode-bidi CSS property value * @return string */ getUnicodeBidiCssValue(): Promise; /** * Get the direction CSS property value * @return string */ getDirectionCssValue(): Promise; } export = FormattedPhone;