import { FastifyReply } from "fastify"; import { Client, InteractionData, Message, TextChannel } from ".."; import { BaseInteraction, InteractionReplyData } from "./BaseInteraction"; export declare class CommandInteraction extends BaseInteraction { data: InteractionData; res: FastifyReply; client: Client; channel: TextChannel; message?: Message; constructor(data: InteractionData, res: FastifyReply, client: Client); reply(data: InteractionReplyData): Promise; editReply(data: InteractionReplyData): Promise; get guild(): string; get commandName(): string; get customId(): string; set commandNmae(name: string); }