export declare const sha512Encrypt: (data: string, privateKey: string) => string; export declare const sha512Verify: (hashedToVerify: string, data: string, privateKey: string) => boolean;