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