import * as lit_html from 'lit-html'; import * as lit from 'lit'; import { LitElement } from 'lit'; import { TypeFormats } from './timer.js'; /** * @since 3.1.0 * @status stable * * @tagname kemet-timer-display * @summary Displays remaining time * * @prop {TypeFormats} format - The format to display the remaining time in */ declare class KemetTimerDisplay extends LitElement { static styles: lit.CSSResult[]; format: TypeFormats; displayTime: string; constructor(); render(): lit_html.TemplateResult<1>; getTime(): void; getTimeInSeconds(time: any): any; } declare global { interface HTMLElementTagNameMap { 'kemet-timer-display': KemetTimerDisplay; } } export { KemetTimerDisplay as default };