/** * @module net/packets/incoming */ import { Writer } from '../../../writer'; import { Reader } from '../../../reader'; import { PacketType } from '../../../packet-type'; import { Packet } from '../../../packet'; /** * Recieved to give the player information about a newly hatched pet. */ export declare class HatchPetMessage implements Packet { type: PacketType; propagate: boolean; /** * The name of the hatched pet. */ petName: string; /** * The skin id of the hatched pet. */ petSkin: number; read(reader: Reader): void; write(writer: Writer): void; } //# sourceMappingURL=hatch-pet-message.d.ts.map