import { NbtCompoundNode } from './NbtCompoundNode'; import { NbtNode } from './NbtNode'; export declare abstract class NbtPrimitiveNode extends NbtNode { value: T; raw: string; /** * * @param superNbt * @param value * @param raw The raw string representation of the primitive value. This * should _not_ contain suffixes for number tags, but _should_ contain * quotation marks for strings. */ constructor(superNbt: NbtCompoundNode | null, value: T, raw: string); toString(): string; valueOf(): T; }