import { APIInteractionDataResolvedGuildMember, APIMessageMentionableSelectInteractionData, APIRole, APIUser } from "discord-api-types/v10"; import { DiscordApplication, ResponseCallback } from "../../../DiscordApplication.js"; import { MessageUpdateResponse } from "../../response-types.js"; import { BaseSelectMenuContext, SelectMenuInteraction } from "./BaseSelectMenuContext.js"; declare type SelectMenuDataType = APIMessageMentionableSelectInteractionData; export declare class MentionableSelectMenuContext extends BaseSelectMenuContext { values: string[]; target: { user?: APIUser; member?: APIInteractionDataResolvedGuildMember; role?: APIRole; }; constructor(manager: DiscordApplication, interaction: SelectMenuInteraction, timestamps: { signature: Date; received: Date; }, responseCallback: ResponseCallback); } export {};