import { type IconifyIcon } from "@iconify/vue";
import { type ComputedRef, type MaybeRefOrGetter, type Ref } from "vue";
export declare function usePasswordToggle(origType: MaybeRefOrGetter<string>): {
	passwordToggleIcon: ComputedRef<IconifyIcon | string>;
	showPassword: Ref<boolean>;
	typeAttr: ComputedRef<string>;
};
