/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; /** * Component that provides decorator functionality for list panels, enabling event dispatch for configuration updates and error handling. * Selector: src-list-decorator * generated from JSON dist/setup/listDecorator.utam.json * @version 2026-03-09T13:56:37.013Z * @author Salesforce */ export default class ListDecorator extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that the instrumentation object is present * @return boolean * @param selectorStr CSS selector parameter */ isInstrPresent(selectorStr: string): Promise; /** * Check that the instrumentation object is visible * @return boolean * @param selectorStr CSS selector parameter */ isInstrVisible(selectorStr: string): Promise; /** * Check if the instrumentation object is enabled * @return boolean * @param selectorStr CSS selector parameter */ isInstrEnabled(selectorStr: string): Promise; /** * Check if the dispatchProviderUpdate method is present * @return boolean * @param selectorStr CSS selector parameter */ isDispatchProviderUpdatePresent(selectorStr: string): Promise; /** * Check if the dispatchError method is present * @return boolean * @param selectorStr CSS selector parameter */ isDispatchErrorPresent(selectorStr: string): Promise; }