/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _GroupedCombobox from 'salesforce-pageobjects/lightning/pageObjects/groupedCombobox'; /** * Component that allows selection and filtering of layout options. * Selector: src-repeater-layout-picker * generated from JSON dist/es_property_editors/repeaterLayoutPicker.utam.json * @version 2026-03-09T13:56:35.455Z * @author Salesforce */ declare class RepeaterLayoutPicker extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that header text is present and visible * @return boolean */ isHeaderTextVisible(): Promise; /** * Get text from header * @return string */ getHeaderText(): Promise; /** * Check that description text is present and visible * @return boolean */ isDescriptionTextVisible(): Promise; /** * Get text from description * @return string */ getDescriptionText(): Promise; /** * Represents the grouped combobox for selecting and filtering layouts. */ getLayoutPicker(): Promise<_GroupedCombobox>; } export = RepeaterLayoutPicker;