import type { APIMessage, APIMessageApplicationCommandInteraction } from "discord-api-types/v10"; import { DiscordApplication, ResponseCallback } from "../../DiscordApplication.js"; import { ChannelMessageResponse } from "../response-types.js"; import { BaseCommandContext } from "./ApplicationCommandContext.js"; export declare class MessageCommandContext extends BaseCommandContext { message: APIMessage; constructor(app: DiscordApplication, interaction: APIMessageApplicationCommandInteraction, timestamps: { signature: Date; received: Date; }, responseCallback: ResponseCallback); }