import { ClassValue } from './types';
export interface PasswordInputBareProps {
    /**
     * @see [Apple Docs](https://developer.apple.com/documentation/security/password_autofill/enabling_password_autofill_on_an_html_input_element)
     * @see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete)
     */
    autocomplete: 'current-password' | 'new-password';
    id: string;
    name: string;
    autofocus?: boolean;
    class?: ClassValue;
    disabled?: boolean;
    value?: string;
}
interface Props extends PasswordInputBareProps {
    class: ClassValue;
}
type __VLS_Props = Props;
declare const model: import('vue').ModelRef<string, string, string, string>;
type __VLS_PublicProps = {
    modelValue?: typeof model['value'];
} & __VLS_Props;
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
    focus: () => void;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    "update:modelValue": (value: string) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
    "onUpdate:modelValue"?: (value: string) => any;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
    'input-ref': HTMLInputElement;
}, HTMLInputElement>;
export default _default;
