/** * 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 _RecordLayout from 'salesforce-pageobjects/force/pageObjects/recordLayout'; /** * Represents the custom quick actions panel in Mobile * generated from JSON dist/force/mobileCustomQuickAction.utam.json * @version 2026-03-09T13:56:35.839Z * @author Salesforce */ declare class MobileCustomQuickAction extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); waitForRecordLayout(): Promise<_RecordLayout>; getButton(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getRecordLayout(): Promise<_RecordLayout>; } export = MobileCustomQuickAction;