/** * 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'; /** * A Lightning Web Component that provides a reset button to reset the Copilot session. The reset functionality can be enabled or disabled based on the state of the application. * Selector: src-reset-session * generated from JSON dist/runtime_copilot/resetSession.utam.json * @version 2026-03-09T13:56:37.204Z * @author Salesforce */ export default class ResetSession extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Simulate a click on the reset button */ clickResetButton(): Promise; /** * Check if the reset button is disabled * @return string */ isResetButtonDisabled(attrName: string): Promise; /** * Check if the reset button is visible * @return boolean */ isResetButtonVisible(): Promise; }