/** * 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 performs an action through the Copilot API and dispatches a workflow state change event. * Selector: app_dev_agent-utterance-action * generated from JSON dist/app_dev_agent/utteranceAction.utam.json * @version 2026-03-09T13:56:34.915Z * @author Salesforce */ export default class UtteranceAction extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Simulate a click action to trigger the utterance action * @param selectorStr CSS selector parameter */ triggerUtteranceAction(selectorStr: string): Promise; }