import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory'; export interface PasswordInputIndicatorBaseProps extends PolymorphicProps { /** * The fallback content to display when the password is not visible. */ fallback?: string; } export interface PasswordInputIndicatorProps extends PasswordInputIndicatorBaseProps, /** * @vue-ignore */ HTMLAttributes { } declare const _default: __VLS_WithTemplateSlots< DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; fallback?(_: { fallback: string | undefined; }): any; }>; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };