import { MessageCommandBuilder } from "@discord-interactions/builders"; import { ApplicationCommandType, RESTPostAPIContextMenuApplicationCommandsJSONBody } from "discord-api-types/v10"; import { HandledInteraction } from "../handlers/HandledInteraction.js"; import { MessageCommandContext } from "../index.js"; import { ICommandBase, RegisteredCommandBase } from "./Base.js"; export declare type IMessageCommand = ICommandBase; export declare class MessageCommand extends HandledInteraction { handler: (ctx: MessageCommandContext) => Promise; } export declare class RegisteredMessageCommand extends RegisteredCommandBase { }