interface PasswordFieldProps { value?: string; label?: string; placeholder?: string; required?: boolean; disabled?: boolean; showStrength?: boolean; hint?: string; class?: string; } declare const PasswordField: import("svelte").Component; type PasswordField = ReturnType; export default PasswordField;