import { BufWrapper } from '@minecraft-js/bufwrapper'; import { NBT_TAG, TagType } from './Tag'; export declare class NBT_Long extends NBT_TAG { static id: TagType; write(buf: BufWrapper, payload?: bigint): BufWrapper; read(buf: BufWrapper): bigint; toJSON(): { name: string; payload: string; type: number; }; }