import { BufWrapper } from '@minecraft-js/bufwrapper'; import Packet from './Packet'; export default class PlayEmotePacket extends Packet { static readonly id = 51; constructor(buf?: BufWrapper); write(data: PlayEmote): void; read(): void; } interface PlayEmote { uuid: string; id: number; metadata: number; } export {};