declare function encrypt64(text: string, hexKey: string): string;
declare function decrypt64(base64Text: string, hexKey: string): string;

export { decrypt64, encrypt64 };
