/** * 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'; /** * Selector: .uiInputTextForAutocomplete. * Represents the ui:inputTextForAutocomplete Aura component. * Set text for the field. * generated from JSON dist/aura/inputTextForAutocomplete.utam.json * @version 2026-03-09T13:56:35.006Z * @author Salesforce */ export default class InputTextForAutocomplete extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Set text for the input field */ enterText(text: string): Promise; }