import type { AuthLocale } from '../../../i18n/keys.js'; import { type PasswordPolicy } from '../../../password-policy.js'; interface Props { /** The policy in force — from the server, the prop, or the package defaults. */ policy: PasswordPolicy; /** Current field value. */ password: string; /** Merged locale bundle from the calling page. */ t: AuthLocale; /** Id for the field's `aria-describedby`. */ id: string; unstyled?: boolean; class?: string; } declare const PasswordRequirements: import("svelte").Component; type PasswordRequirements = ReturnType; export default PasswordRequirements;