/** * @module net/data */ import { Writer } from '../writer'; import { Reader } from '../reader'; import { DataPacket } from '../packet'; export declare class StatData implements DataPacket { /** * The type of stat. */ statType: number; /** * The number value of this stat, if this is not a string stat. */ statValue: number; /** * The string value of this stat, if this is a string stat. */ stringStatValue: string; read(reader: Reader): void; write(writer: Writer): void; private isStringStat; } //# sourceMappingURL=stat-data.d.ts.map