/** * 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, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _Icon from 'salesforce-pageobjects/lightning/pageObjects/icon'; /** * Component that displays a scoped notification message with an icon and optional slot content. * Selector: app_dev_agent-scoped-notification * generated from JSON dist/app_dev_agent/scopedNotification.utam.json * @version 2026-03-09T13:56:34.886Z * @author Salesforce */ export default class ScopedNotification extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the notification container is visible * @return boolean */ isNotificationVisible(): Promise; /** * Get the text content of the notification message * @return string */ getMessageText(): Promise; /** * Represents the icon displayed within the notification. */ getIconElement(): Promise<_Icon>; /** * Represents the default slot for additional content. */ getSlotContent(ContainerCtor: _ContainerCtor): Promise; }