/// <reference types="node" />
export default class UR {
    private _cborPayload;
    private _type;
    constructor(_cborPayload: Buffer, _type?: string);
    static fromBuffer(buf: Buffer): UR;
    decodeCBOR(): Buffer;
    get type(): string;
    get cbor(): Buffer;
    equals(ur2: UR): boolean;
}
