export declare abstract class NbtAbstract<T> {
    #private;
    constructor(nbt: T);
    get nbt(): T;
    toString(): any;
}
