import { ChatNoteType, RpcMessageTag } from "@skeldjs/constant"; import { HazelReader, HazelWriter } from "@skeldjs/hazel"; import { BaseRpcMessage } from "./BaseRpcMessage"; export declare class SendChatNoteMessage extends BaseRpcMessage { readonly playerId: number; readonly notetype: ChatNoteType; static messageTag: RpcMessageTag.SendChatNote; messageTag: RpcMessageTag.SendChatNote; constructor(playerId: number, notetype: ChatNoteType); static deserializeFromReader(reader: HazelReader): SendChatNoteMessage; serializeToWriter(writer: HazelWriter): void; clone(): SendChatNoteMessage; } //# sourceMappingURL=SendChatNote.d.ts.map