export declare const generateSalt: () => string;
export declare const encrypt: (data: string, password: string, salt: string) => string;
export declare const decrypt: (data: string, password: string, salt: string) => string;
export declare const createTestCipher: (password: string, salt: string) => string;
export declare const verifyTestCipher: (testCipher: string, password: string, salt: string) => boolean;
//# sourceMappingURL=encryption.d.ts.map