import type { HTMLInputAttributes } from "svelte/elements";
type PasswordInputProps = Omit & {
label?: string;
helperText?: string;
errorText?: string;
invalid?: boolean;
size?: "sm" | "md" | "lg";
value?: string;
showLabel?: string;
hideLabel?: string;
visible?: boolean;
class?: string;
};
declare const PasswordInput: import("svelte").Component;
type PasswordInput = ReturnType;
export default PasswordInput;
//# sourceMappingURL=PasswordInput.svelte.d.ts.map