import { ZInput } from './input'; import { ZTextInput_Props } from '@zurich/dev-utils/code/TextInput'; /** ## `` * * Component docs. */ export declare class ZTextInput extends ZInput implements ZTextInput_Props { #private; readonly _name = "text-input"; model?: ZTextInput_Props['model']; pattern?: ZTextInput_Props['pattern']; 'input-type': ZTextInput_Props['input-type']; 'max-length'?: ZTextInput_Props['max-length']; 'no-counter'?: ZTextInput_Props['no-counter']; 'min-length'?: ZTextInput_Props['min-length']; 'data-list'?: ZTextInput_Props['data-list']; 'align-right'?: ZTextInput_Props['align-right']; placeholder?: ZTextInput_Props['placeholder']; icon?: ZTextInput_Props['icon']; _value: string; render(): import('lit-html').TemplateResult<1>; reset(): void; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'z-text-input': ZTextInput; } }