import { FastifyReply } from 'fastify'; import { Interaction } from './Interaction.js'; import { APIApplicationCommandInteraction, ApplicationCommandType } from '@discordjs/core'; export declare class CommandInteraction extends Interaction { _reply: FastifyReply; name: string; commandId: string; commandType: ApplicationCommandType; resolved: any; constructor(data: APIApplicationCommandInteraction, reply?: FastifyReply); }