export declare function generateRandomId(): string; export declare function generatePassword(length?: number): string; export declare function validatePasswordStrengthWithMessage(password: string): string; type MaskRule = { keys: string[]; pattern: RegExp; replacer: (...groups: string[]) => string; }; export declare const maskFn: (key: string, value: unknown, additionalMaskRules?: MaskRule[]) => unknown; export {};