/** * 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'; import _Input from 'salesforce-pageobjects/lightning/pageObjects/input'; /** * Component that allows input of a date and time, with the ability to commit the value and signal a change through a custom event. * Selector: src-input-date-time-string * generated from JSON dist/feeds/chat/inputDateTimeString.utam.json * @version 2026-03-09T13:56:35.642Z * @author Salesforce */ export default class InputDateTimeString extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Represents the date and time input field with commit event handler */ getDateTimeInput(): Promise<_Input>; }