import { IconType, ValidateInputBaseT } from '../../..'; import { BagelInputShellProps } from './bagelInputShell'; export interface TextInputProps extends ValidateInputBaseT, BagelInputShellProps { id?: string; title?: string; helptext?: string; name?: string; placeholder?: string; modelValue?: string; label?: string; small?: boolean; dense?: boolean; required?: boolean; pattern?: string; defaultValue?: string; shrink?: boolean; underlined?: boolean; disabled?: boolean; type?: string; nativeInputAttrs?: { [key: string]: any; }; icon?: IconType; iconStart?: IconType; multiline?: boolean; autoheight?: boolean; code?: boolean; rows?: number | string; autocomplete?: string; autofocus?: boolean; error?: string; onFocusout?: (e: FocusEvent) => void; onFocus?: (e: FocusEvent) => void; } export interface PasswordInputProps extends TextInputProps { strengthMeter?: boolean; } type __VLS_Props = PasswordInputProps; type __VLS_PublicProps = { modelValue?: string; 'showPwd'?: boolean; } & __VLS_Props; declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: string) => any; "update:showPwd": (value: boolean) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: string) => any) | undefined; "onUpdate:showPwd"?: ((value: boolean) => any) | undefined; }>, { label: string; autocomplete: string; strengthMeter: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; export default _default; //# sourceMappingURL=PasswordInput.vue.d.ts.map