import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory';
export interface PasswordInputVisibilityTriggerBaseProps extends PolymorphicProps {
}
export interface PasswordInputVisibilityTriggerProps extends PasswordInputVisibilityTriggerBaseProps, 
/**
 * @vue-ignore
 */
HTMLAttributes {
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<PasswordInputVisibilityTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PasswordInputVisibilityTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
    default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
