interface Props { id: string; label: string; value: string; placeholder?: string; autocomplete?: string; showStrength?: boolean; class?: string; } declare const PasswordInput: import("svelte").Component; type PasswordInput = ReturnType; export default PasswordInput;