export declare namespace base16 {
    function encode(data: Uint8Array): string;
    function decode(text: string): Uint8Array;
}
