import { type FullAutoFill } from 'svelte/elements'; interface PropsInterface { name: string; label: string; autocomplete?: FullAutoFill; hasError?: boolean; labelHidden?: boolean; placeholder?: string | null; required?: boolean; describedBy?: string; } declare const PasswordField: import("svelte").Component; type PasswordField = ReturnType; export default PasswordField;