/**
 * A function that decodes a string of data which has been encoded using base-64 encoding.
 * Uses `atob` if available, otherwise uses `Buffer` from `global`. If neither are available, returns the data as-is.
 */
declare const isomorphicAtob: (data: string) => string;

export { isomorphicAtob };
