import { FastifyReply } from 'fastify'; import { StringSelectMenuInteraction } from './StringSelectMenuInteraction.js'; import { APIMessageMentionableSelectInteractionData, APIRole, APIUser } from 'discord-api-types/v10'; import { APIAutofillSelectMenuInteraction } from './UserSelectMenuInteraction.js'; export declare class MentionableSelectMenuInteraction extends StringSelectMenuInteraction { values: (APIRole | APIUser)[]; constructor(data: APIAutofillSelectMenuInteraction, reply: FastifyReply); }