/** * 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'; import _LwcSetupHeader from 'salesforce-pageobjects/setup/pageObjects/lwcSetupHeader'; /** * Component that displays a setup header with a customizable title, icon, and slots for additional content, and provides functionality to refresh or activate setup nodes. * Selector: src-lwc-setup-component * generated from JSON dist/setup/lwcSetupComponent.utam.json * @version 2026-03-09T13:56:37.017Z * @author Salesforce */ declare class LwcSetupComponent extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the main container of the setup component is present and visible * @return boolean */ isSetupComponentVisible(): Promise; /** * Check if the main content area of the setup component is present and visible * @return boolean */ isSetupContentAreaVisible(): Promise; /** * Represents the custom setup header component with title and icon. */ getSetupHeader(): Promise<_LwcSetupHeader>; /** * Represents the named slot for additional content on the right side of the header. */ getRightHeaderContent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the named slot for the main content of the setup component. */ getContentSlot(ContainerCtor: _ContainerCtor): Promise; } export = LwcSetupComponent;