import { BufferParams } from '../common/interfaces';
export default class Base58Check {
    private buf?;
    constructor(obj?: Uint8Array | string | BufferParams);
    static validChecksum(data: string | Uint8Array, checksum?: string | Uint8Array): boolean;
    static decode(s: string): Uint8Array;
    static checksum(buffer: Uint8Array): Uint8Array;
    static encode(buf: Uint8Array): string;
    toBuffer(): Uint8Array | undefined;
    toString(): string;
    private fromBuffer;
    private fromString;
    private set;
}
//# sourceMappingURL=base58check.d.ts.map