/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; /** * Selector: .forceToastMessage. * Represents the force:toastMessage Aura component. * Get the message text or close the toast message.. * generated from JSON dist/force/toastMessage.utam.json * @version 2026-03-09T13:56:35.891Z * @author Salesforce */ export default class ToastMessage extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Closes the toast message */ toastClose(): Promise; /** * Gets the text of the toast message * @return the text of the toast message */ getMessageText(): Promise; }