/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; /** * Selector: .forceSearchInputLookupDesktopOption. * Represents the forceSearch:inputLookupDesktopOption Aura component. * Get an option label or select an option. * generated from JSON dist/forcesearch/inputLookupDesktopOption.utam.json * @version 2026-03-09T13:56:35.899Z * @author Salesforce */ export default class InputLookupDesktopOption extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Selects the option */ select(): Promise; /** * Gets the label text for the option * @return the label text for the option */ getOptionLabel(): Promise; }