/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; import _LwcHighlightsPanel from 'salesforce-pageobjects/records/pageObjects/lwcHighlightsPanel'; import _Tabset from 'salesforce-pageobjects/lightning/pageObjects/tabset'; import _DesktopRecordPageDecorator from 'salesforce-pageobjects/record/flexipage/pageObjects/desktopRecordPageDecorator'; /** * Represents a flexipage on a record home screen * generated from JSON dist/global/recordHomeFlexipage2.utam.json * @version 2026-03-09T13:56:35.942Z * @author Salesforce */ declare class RecordHomeFlexipage2 extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Gets the highlights panel for the flexipage * @return the highlights panel for the flexipage (utam-records/pageObjects/lwcHighlightsPanel) */ getHighlights(): Promise<_LwcHighlightsPanel>; /** * Gets the tab set for the flexipage * @return the tab set for the flexipage (utam-lightning/pageObjects/tabset) */ getTabset(): Promise<_Tabset>; /** * Gets the record page decorator for the flexipage * @return the record page decorator for the flexipage (utam-record-flexipage/pageObjects/desktopRecordPageDecorator) */ getDecorator(): Promise<_DesktopRecordPageDecorator>; } export = RecordHomeFlexipage2;