import { PropTypes } from '@zag-js/vue'; import { ComputedRef, MaybeRef } from 'vue'; import { EmitFn, Optional } from '../../types'; import { RootEmits } from './password-input.types'; import * as passwordInput from '@zag-js/password-input'; export interface UsePasswordInputProps extends Optional, 'id'> { } export interface UsePasswordInputReturn extends ComputedRef> { } export declare const usePasswordInput: (props?: MaybeRef, emit?: EmitFn) => ComputedRef>;