export declare function encrypt(data: string, codeChallenge: string): Promise<string>;
export declare function decrypt(base64: string, codeChallenge: string): Promise<string>;
