/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _Button from 'salesforce-pageobjects/lightning/pageObjects/button'; /** * Component that displays a section with a header, a notification message, a description, and a button to edit an expression. * Selector: src-repeater-expression-editor * generated from JSON dist/es_property_editors/repeaterExpressionEditor.utam.json * @version 2026-03-09T13:56:35.452Z * @author Salesforce */ declare class RepeaterExpressionEditor extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that header is present and visible * @return boolean */ isHeaderVisible(): Promise; /** * Get text from the header * @return string */ getHeaderText(): Promise; /** * Check that notification container is present and visible * @return boolean */ isNotificationContainerVisible(): Promise; /** * Get text from notification message * @return string */ getNotificationMessage(): Promise; /** * Check that description is present and visible * @return boolean */ isDescriptionVisible(): Promise; /** * Get text from description * @return string */ getDescriptionText(): Promise; /** * Returns true if element "notificationContainer" present on the page * @return boolean */ verifyNotificationContainerPresence(): Promise; /** * Returns true if element "notificationIcon" present on the page * @return boolean */ verifyNotificationIconPresence(): Promise; /** * Represents the button to edit the expression. */ getEditButton(): Promise<_Button>; } export = RepeaterExpressionEditor;