/** * 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 } from '@utam/core'; import _LocationDisplay from 'salesforce-pageobjects/energyutilities/euselfserveprtl/pageObjects/locationDisplay'; import _ActionableMessageNotifier from 'salesforce-pageobjects/energyutilities/euselfserveprtl/pageObjects/actionableMessageNotifier'; import _FormattedText from 'salesforce-pageobjects/lightning/pageObjects/formattedText'; /** * Page Object: page object name * generated from JSON dist/energyutilities/euselfserveprtl/locationSelection.utam.json * @version 2026-03-09T13:56:35.273Z * @author Salesforce */ export default class LocationSelection extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getLocationDisplays(): Promise<_LocationDisplay[]>; getLocationDisplayByIndex(index: number): Promise<_LocationDisplay>; getDivContent(): Promise<(_BaseUtamElement)>; getActionableMessageNotifier(): Promise<_ActionableMessageNotifier>; getContent(cssString: string, ContainerCtor: _ContainerCtor): Promise; getFormattedText(): Promise<_FormattedText>; }