/** * Kit remote: pass `.as('password').name` as `name`, not the full `.as()` spread * (Kit’s `value` get/set fights local binding). */ interface FormPasswordInputProps { id?: string; name?: string; label?: string; placeholder?: string; value?: string; status?: 'default' | 'error' | 'success' | 'warning'; helperText?: string; errorMessage?: string; disabled?: boolean; required?: boolean; size?: 'sm' | 'md' | 'lg'; bindData?: boolean; inputName?: string; class?: string; oninput?: (e: Event) => void; onchange?: (e: Event) => void; defaultValue?: unknown; type?: string; 'aria-invalid'?: boolean | 'true' | 'false'; autocomplete?: string; uncontrolled?: boolean; } declare const FormPasswordInput: import("svelte").Component; type FormPasswordInput = ReturnType; export default FormPasswordInput;