/** * 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, BaseUtamElement as _BaseUtamElement, UtamBasePageObject as _UtamBasePageObject, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; /** * Selector: .oneSystemMessage. * Represents the one:systemMessage Aura component. * Access a system message text or a system message link by ID. Get the system message text, link URL, or click a system message link. * generated from JSON dist/global/systemMessage.utam.json * @version 2026-03-09T13:56:35.949Z * @author Salesforce */ declare class SystemMessage extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get the system message text * @return the system message text */ getMessage(): Promise; /** * Click the close button * @return none */ dismissMessage(): Promise; /** * Get the link destination * @return the link destination */ getLinkDestination(): Promise; /** * Click the system message link * @return none */ clickSystemMessageLink(): Promise; getCloseBtn(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getSystemMessageTextById(messageId: string): Promise<(_BaseUtamElement)>; getSystemMessageLinkById(messageId: string): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getCloseBtnById(messageId: string): Promise<(_BaseUtamElement & _ClickableUtamElement)>; } export = SystemMessage;