export declare namespace base58 {
    const alphabet = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";
    function encode(data: Uint8Array): string;
    function decode(text: string): Uint8Array;
}
