/** * 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, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; /** * A component that captures a click event on a div and dispatches a custom click event with additional detail if an executor is provided. * Selector: runtime-copilot-base-block-base-followup-action * generated from JSON dist/runtime_copilot_base/blockBaseFollowupAction.utam.json * @version 2026-03-09T13:56:37.261Z * @author Salesforce */ export default class BlockBaseFollowupAction extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Simulate a click action on the div */ clickDiv(): Promise; /** * Check that the clickable div is present and visible * @return boolean */ isDivVisible(): Promise; /** * Check if the clickable div is enabled for interaction * @return boolean */ isDivEnabled(): Promise; /** * Represents the default slot content where users can insert any content. */ getDefaultSlotContent(ContainerCtor: _ContainerCtor): Promise; }