/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; import _InputSelect from 'salesforce-pageobjects/aura/pageObjects/inputSelect'; /** * Selector: .slds-modal__container * Represents a path assistant closed stage selection modal. * You can select a closed stage * generated from JSON dist/runtime_sales/pathClosedStageModal.utam.json * @version 2026-03-09T13:56:36.890Z * @author Salesforce */ declare class PathClosedStageModal extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getStageSelect(): Promise<_InputSelect>; getSaveButton(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; } export = PathClosedStageModal;