import { Command, CommandData, MessageCommandExecutor } from "../index.js"; import { ApplicationCommandType } from "discord-api-types/v10"; export declare class MessageCommand extends Command { type: ApplicationCommandType; executor: MessageCommandExecutor | undefined; constructor(options?: { data?: CommandData; executor?: MessageCommandExecutor; }); setExecutor(executor: MessageCommandExecutor): this; }