import { Ref } from 'vue'; export interface InputPasswordOptionT { type: Ref<'text' | 'password'>; disabled: Ref; showPasswordEvent: 'click' | 'pointerdown'; } /** * 密码输入框 */ export declare function useInputPassword(options: InputPasswordOptionT): { showPassword: Ref; onEyeMouseDown: () => void; onEyeMouseUp: () => void; onEyeClick: () => void; };