/** * 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'; import _Input from 'salesforce-pageobjects/lightning/pageObjects/input'; /** * Selector: dxp_form-input * Represents the dxp_form/input component. * Get the lightning-input component. * generated from JSON dist/dxp_form/dxpInput.utam.json * @version 2026-03-09T13:56:34.775Z * @author Salesforce */ export default class DxpInput extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if lightningInput flag is set to true. * @return boolean value */ checkDxpCheckbox(checked: boolean): Promise; getLightningInput(): Promise<_Input>; }