/** * 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 encapsulates a time input field, allowing the user to enter a time and commit the value, which then dispatches a 'valuechange' event with the entered time. * Selector: src-input-time * generated from JSON dist/feeds/chat/inputTime.utam.json * @version 2026-03-09T13:56:35.644Z * @author Salesforce */ export default class InputTime extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Represents the time input field that accepts user input and commits the value */ getTimeInput(): Promise<_Input>; }