/** * 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'; /** * Selector: .oneStageLeft. * Represents the one:stageLeft Aura component. * Access the action cards by name or click a link by name. * generated from JSON dist/global/stageLeft.utam.json * @version 2026-03-09T13:56:35.947Z * @author Salesforce */ declare class StageLeft extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Click a link by name * @return none */ clickItemByname(text: string): Promise; /** * Click action cards by name * @return none */ getActionCardByName(text: string): Promise; } export = StageLeft;