/** * 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 serves as a container with slots for custom content insertion, including header, main content, and footer areas. * Selector: src-base-popover-container * generated from JSON dist/feeds/chat/basePopoverContainer.utam.json * @version 2026-03-09T13:56:35.619Z * @author Salesforce */ export default class BasePopoverContainer extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Represents the content of the named slot for the beginning part of the header */ getHeaderStartContent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the content of the named slot for the main part of the header */ getHeaderContent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the content of the named slot for the end part of the header */ getHeaderEndContent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the default content slot for the main body of the component */ getMainContent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the content of the named slot for the footer area */ getFooterContent(ContainerCtor: _ContainerCtor): Promise; }