import type { APIInteractionDataResolvedGuildMember, APIUser, APIUserApplicationCommandInteraction } 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 UserCommandContext extends BaseCommandContext { target: { user: APIUser; member?: APIInteractionDataResolvedGuildMember; }; constructor(app: DiscordApplication, interaction: APIUserApplicationCommandInteraction, timestamps: { signature: Date; received: Date; }, responseCallback: ResponseCallback); }