import * as React from 'react'; type PasswordStrengthRule = { label: string; test: (p: string) => boolean; }; declare const PASSWORD_STRENGTH_RULES: PasswordStrengthRule[]; type PasswordStrengthTooltipProps = { open?: boolean; password: string; children: React.ReactNode; side?: "top" | "right" | "bottom" | "left"; onRequestClose?: () => void; }; declare const PasswordStrengthTooltip: React.ForwardRefExoticComponent>; export { PASSWORD_STRENGTH_RULES, type PasswordStrengthRule, PasswordStrengthTooltip, type PasswordStrengthTooltipProps };