import { ZInput } from './input'; import { ZTimeInput_Props } from '@zurich/dev-utils/code/TimeInput'; /** ## `` * * Component docs. */ export declare class ZTimeInput extends ZInput implements ZTimeInput_Props { #private; readonly _name = "time-input"; model?: ZTimeInput_Props['model']; range?: ZTimeInput_Props['range']; min?: ZTimeInput_Props['min']; max?: ZTimeInput_Props['max']; 'with-seconds'?: ZTimeInput_Props['with-seconds']; step?: ZTimeInput_Props['step']; 'custom-ui'?: ZTimeInput_Props['custom-ui']; pattern?: ZTimeInput_Props['pattern']; placeholder?: ZTimeInput_Props['placeholder']; _value: string | null; render(): import('lit-html').TemplateResult<1>; get _min(): string | undefined; get _max(): string | undefined; get localizedPlaceholder(): string; reset(): void; timeToNumber(value: string): number; numberToTime(value: number): string; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'z-time-input': ZTimeInput; } }