/** * 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, BaseUtamElement as _BaseUtamElement, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject, ActionableUtamElement as _ActionableUtamElement } from '@utam/core'; import _LayoutItem from 'salesforce-pageobjects/lightning/pageObjects/layoutItem'; /** * Selector: lightning-layout * Represents the lightning-layout Lightning web component. * Get the lightning-layout-item by child position. * generated from JSON dist/lightning/layout.utam.json * @version 2026-03-09T13:56:36.127Z * @author Salesforce */ declare class Layout extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Gets the text of the root of the layout. */ getText(): Promise; getRoot(): Promise<(_BaseUtamElement & _ActionableUtamElement)>; /** * @param index First index starts at 1 */ getLayoutItem(index: number): Promise<_LayoutItem>; getLayoutItemByText(titleString: string): Promise<_LayoutItem>; getLayoutContent(ContainerCtor: _ContainerCtor): Promise; } export = Layout;