/**
* Decode a base32 string.
* This is made specifically for our use, deals only with proper strings
*/
export function b32decode(s: any): Uint8Array;
/**
* Encode a string to base32
*/
export function b32encode(s: any): string;
