declare function lowPassword(mdp: string): { include: boolean; matchs: RegExpMatchArray | null; groups: any[] | null; }; declare function mediumPassword(mdp: string): { include: boolean; matchs: RegExpMatchArray | null; groups: any[] | null; }; declare function highPassword(mdp: string): { include: boolean; matchs: RegExpMatchArray | null; groups: any[] | null; }; export { lowPassword, mediumPassword, highPassword }; //# sourceMappingURL=password.d.ts.map