export declare function aesCbcEncryptSecurity(data: string, password: string): string; export declare function aesCbcEncryptIdentity(data: string, password: string, iterations?: number): string; export declare function aesCbcDecryptSecurity(encryptedData: string, password: string): string; export declare function aesCbcDecryptIdentity(encryptedData: string, password: string, iterations?: number): string;