import { ComputedRef, MaybeRefOrGetter } from 'vue'; import { PasswordInputState } from './use-password-input-state.js'; export type UsePasswordInputProps = { /** * When disabled, user input is ignored. * * @default false */ isDisabled?: MaybeRefOrGetter; /** * Password input state. */ state: PasswordInputState; /** * Text to display when `value` is empty. * * @default "" */ placeholder?: string; }; export type UsePasswordInputResult = { /** * Value to render inside the input. */ inputValue: ComputedRef; }; export declare const usePasswordInput: ({ isDisabled, state, placeholder, }: UsePasswordInputProps) => UsePasswordInputResult; //# sourceMappingURL=use-password-input.d.ts.map