/** * 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, BaseUtamElement as _BaseUtamElement, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; /** * Selector: lightning-modal. Represents the wizard for creating a new notification type. Allows access to the wizards contents and footer. * generated from JSON dist/setup_platform_notifications/notificationWizard.utam.json * @version 2026-03-09T13:56:37.062Z * @author Salesforce */ export default class NotificationWizard extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); waitForWizardBodyContainer(): Promise; getWizardBodyContainer(ContainerCtor: _ContainerCtor): Promise; getCancel(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getNext(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getBack(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getDone(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; }