/** * 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 _PathAssistantTabSet from 'salesforce-pageobjects/runtime_sales/pageObjects/pathAssistantTabSet'; import _PathAssistantBody from 'salesforce-pageobjects/runtime_sales/pageObjects/pathAssistantBody'; /** * Selector: .runtime_sales_pathassistantPathAssistant * Represents the path assistant collapsible drawer. * You can access the path tabset and pathbody. * generated from JSON dist/runtime_sales/pathassistantCollapsibleDrawer.utam.json * @version 2026-03-09T13:56:36.897Z * @author Salesforce */ declare class PathassistantCollapsibleDrawer extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the drawer is expanded * @return boolean value */ isDrawerExpanded(title: string): Promise; /** * Wait and get pathAssistantTabSet * @return pathAssistantTabSet */ getPathAssistantTabSet(): Promise<_PathAssistantTabSet>; getButtonWithTitle(title: string): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getCompleteStepActionButton(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getPathAssistantFields(): Promise<_PathAssistantBody>; } export = PathassistantCollapsibleDrawer;