import { type PropertyValues, type TemplateResult } from "lit"; import Text from "../text/component.js"; /** * {@linkcode Time} renders a formatting time. * * @fires time - Fires when the time changes. * @category display */ declare class Time extends Text { /** * Escape symbol. */ escape: string; /** * Format strings. */ format: string; /** * Time. */ time: Date; /** * If there is a value, update every gap or timeout. */ timeout: number; /** * The number of milliseconds that change with each update. */ gap: number; protected timeoutId: number; protected render(): TemplateResult<1>; protected updated(changedProperties: PropertyValues): void; } export default Time; export { Time };