import { RequestPacket } from "../../protocol/query/RequestPacket.js"; import { ShutdownResponsePacket } from "../../protocol/client/ShutdownResponsePacket.js"; export declare class ShutdownRequestPacket extends RequestPacket { forced?: boolean | undefined; readonly type = "shutdownRequest"; readonly responsePacketType = "shutdownResponse"; constructor(forced?: boolean | undefined); }