import { ZInput } from './input'; import { ZPasswordInput_Props } from '@zurich/dev-utils/code/PasswordInput'; /** ## `` * * Component docs. */ export declare class ZPasswordInput extends ZInput implements ZPasswordInput_Props { #private; readonly _name = "password-input"; model?: ZPasswordInput_Props['model']; placeholder?: ZPasswordInput_Props['placeholder']; visible: boolean; render(): import('lit-html').TemplateResult<1>; reset(): void; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'z-password-input': ZPasswordInput; } }