import { ZLocalized } from './localized'; import { ZTime_Props } from '@zurich/dev-utils/code/Time'; /** ## `` * * Component docs. */ export declare class ZTime extends ZLocalized implements ZTime_Props { readonly _name = "time"; time?: ZTime_Props['time']; format?: ZTime_Props['format']; 'format-24'?: ZTime_Props['format-24']; 'with-seconds'?: ZTime_Props['with-seconds']; 'as-relative'?: ZTime_Props['as-relative']; render(): import('lit-html').TemplateResult<1>; get stamp(): string; get date(): Date; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'z-time': ZTime; } }