/** * 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'; import _ActionButton from 'salesforce-pageobjects/force/pageObjects/actionButton'; /** * Selector: .forceModalActionContainer. * Represents the force:modalActionContainer Aura component. * Get all the force:actionButton component by label text. * generated from JSON dist/force/modalActionContainer.utam.json * @version 2026-03-09T13:56:35.840Z * @author Salesforce */ declare class ModalActionContainer extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getActionButton(text: string): Promise<_ActionButton>; } export = ModalActionContainer;