/** * 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'; /** * Selector: lightning-layout-item * Represents the lightning-layout-item Lightning web component, * Get the content in the container. * generated from JSON dist/lightning/layoutItem.utam.json * @version 2026-03-09T13:56:36.128Z * @author Salesforce */ declare class LayoutItem extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getText(): Promise; getLayoutItemContent(ContainerCtor: _ContainerCtor): Promise; } export = LayoutItem;