export declare const base64UrlToBase64: (base64url: string) => string;
/**
 * See https://tools.ietf.org/html/rfc4648#section-5 to more information
 * @param value
 */
declare const decode: (value: string) => string;
export default decode;
