/** * Use this on a base64-encoded string to translate = + / into replacement characters. */ export declare function safeBase64Stringify(value: string): string; /** * Decode a Base64 value that is run through safeBase64Stringify to the actual string. */ export declare function decodeSafeBase64(value: string): string;