declare const encrypt: (data: object | string) => string;
declare const decrypt: (data: string) => any;
export { encrypt, decrypt };
