/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; /** * Selector: .uiAutocompleteOption. * Represents the uiAutocompleteOption component in the autocomplete combobox. * Get an option label or select an option from dropdown list of selectable options. * generated from JSON dist/aura/autocompleteOption.utam.json * @version 2026-03-09T13:56:34.964Z * @author Salesforce */ export default class AutocompleteOption extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); select(displayName: string): Promise; getOptionLabel(displayName: string): Promise; getOptionLink(displayName: string): Promise<(_BaseUtamElement & _ClickableUtamElement) | null>; }