/** * 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 the user to input a time value, which is then processed and emitted with additional formatting. * Selector: runtime_copilot_base-input-time * generated from JSON dist/runtime_copilot_base/inputTime.utam.json * @version 2026-03-09T13:56:37.279Z * @author Salesforce */ declare class InputTime extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Represents a time input field that the user can interact with */ getTimeInput(): Promise<_Input>; } export = InputTime;