/** * 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 container component that provides a base structure for a popover with customizable header and footer sections. * Selector: src-base-popover-container * generated from JSON dist/runtime_copilot_base/basePopoverContainer.utam.json * @version 2026-03-09T13:56:37.247Z * @author Salesforce */ export default class BasePopoverContainer extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Represents the content of the slot for the starting part of the header. */ getHeaderStartContent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the content of the main header slot. */ getHeaderContent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the content of the slot for the ending part of the header. */ getHeaderEndContent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the default slot content for the body of the popover. */ getDefaultSlotContent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the content of the footer slot. */ getFooterContent(ContainerCtor: _ContainerCtor): Promise; }