interface PasswordInputProps { id?: string; name?: string; value?: string; label?: string; placeholder?: string; helperText?: string; disabled?: boolean; required?: boolean; size?: 'sm' | 'md' | 'lg'; status?: 'default' | 'error' | 'success' | 'warning'; class?: string; oninput?: (e: Event) => void; onchange?: (e: Event) => void; autocomplete?: string; uncontrolled?: boolean; } declare const PasswordInput: import("svelte").Component; type PasswordInput = ReturnType; export default PasswordInput;