import { TBinaryIn } from '../crypto/interface'; export declare const base64Decode: (input: string) => Uint8Array; export declare const base64Encode: (input: TBinaryIn) => string; export declare const base58Decode: (input: string) => Uint8Array; export declare const base58Encode: (input: TBinaryIn) => string; export declare const base16Decode: (input: string) => Uint8Array; export declare const base16Encode: (input: TBinaryIn) => string;