import type { CSSProperties } from 'react'; type Rule = { name: string; text: string; valid: boolean; }; type PasswordCheckProps = { /** * Is an array of object that contains password rules. `name` is the name of the rule, `text` the text associated * with the rule and `valid` is a boolean that determine if the rule is respected or not. */ rules: Rule[]; className?: string; 'data-testid'?: string; style?: CSSProperties; }; export declare function PasswordCheck({ rules, className, 'data-testid': dataTestId, style }: PasswordCheckProps): import("react").JSX.Element; export declare namespace PasswordCheck { var displayName: string; } export {}; //# sourceMappingURL=index.d.ts.map