/** * 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, ActionableUtamElement as _ActionableUtamElement, EditableUtamElement as _EditableUtamElement, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; import _Input from 'salesforce-pageobjects/omnistudio/common/pageObjects/input'; import _Typeahead from 'salesforce-pageobjects/omnistudio/common/pageObjects/typeahead'; import _Textarea from 'salesforce-pageobjects/omnistudio/common/pageObjects/textarea'; /** * Selector:runtime_omnistudio_flexcards-base-input-element * generated from JSON dist/omnistudio/flexcard/baseInput.utam.json * @version 2026-03-09T13:56:36.534Z * @author Salesforce */ declare class BaseInput extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getRoot(): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement & _EditableUtamElement)>; getCommonInput(): Promise<_Input>; getCommonMaskedInput(): Promise<_Input>; getCommonTypeahead(): Promise<_Typeahead>; getCommonTextArea(): Promise<_Textarea>; getCommonComboInput(): Promise<_Input>; getListItems(): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement)[]>; getCommonRadioInput(): Promise<_Input>; getCommonRadioImageInput(): Promise<_Input>; getCommonRadioColourInput(): Promise<_Input>; getCommonRangeInput(): Promise<_Input>; } export = BaseInput;