/**
 *
 * @private
 * @description An isomorphic Base64 function, provides browser and server support.
 * @param {string} input - A string to encode with base64
 */
declare function base64Encode(input: string): string;
export { base64Encode };
