/** * 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'; /** * A Lightning Web Component that acts as a wrapper for the `lightning-grouped-combobox`. It allows users to select an option from a dropdown that filters based on text input. It supports custom icons for options, required field validation, and emits change events for selected values. * generated from JSON dist/builder/framework/expressionBuilderGroupedIconCombobox.utam.json * @version 2026-03-09T13:56:37.458Z * @author Salesforce */ declare class ExpressionBuilderGroupedIconCombobox extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Represents the grouped combobox with custom options and icons. */ getGroupedCombobox(): Promise<_GroupedCombobox>; } export = ExpressionBuilderGroupedIconCombobox;