import { TextEditor } from '../textEditor'; export declare const EDITOR_TYPE = "time"; /** * @private * @class TimeEditor */ export declare class TimeEditor extends TextEditor { /** * Returns the unique editor type identifier for the time editor. */ static get EDITOR_TYPE(): string; /** * Initializes the editor and registers an afterSetTheme hook to close on theme changes. */ init(): void; /** * Creates the editor's textarea element as a native time input. */ createElements(type?: string): void; /** * Sets the editor value and warns if the value does not match the 24-hour time format required by the native time input. */ setValue(value?: unknown): void; /** * Selects all text in the time input element when the editor receives focus. */ focus(): void; /** * Opens the editor and programmatically invokes the native time picker via showPicker(). */ open(): void; }