/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _Input from 'salesforce-pageobjects/lightning/pageObjects/input'; import _Combobox from 'salesforce-pageobjects/lightning/pageObjects/combobox'; import _FormattedText from 'salesforce-pageobjects/lightning/pageObjects/formattedText'; import _ButtonIcon from 'salesforce-pageobjects/lightning/pageObjects/buttonIcon'; /** * Selector: es_property_editors-input-date-time * Provides access to various lightning components * generated from JSON dist/es_property_editors/inputDateTime.utam.json * @version 2026-03-09T13:56:35.409Z * @author Salesforce */ declare class InputDateTime extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getInput(): Promise<_Input>; getCombobox(): Promise<_Combobox>; getLabelContent(): Promise<(_BaseUtamElement)>; getFormattedText(): Promise<_FormattedText>; getButtonIcon(): Promise<_ButtonIcon>; } export = InputDateTime;