import { FastifyReply } from 'fastify'; import { StringSelectMenuInteraction } from './StringSelectMenuInteraction.js'; import { APIMessageChannelSelectInteractionData, APIMessageComponentSelectMenuInteraction, APIMessageMentionableSelectInteractionData, APIMessageRoleSelectInteractionData, APIMessageUserSelectInteractionData, APIUser } from 'discord-api-types/v10'; export interface APIAutofillSelectMenuInteraction extends APIMessageComponentSelectMenuInteraction { data: T; } export declare class UserSelectMenuInteraction extends StringSelectMenuInteraction { values: APIUser[]; constructor(data: APIAutofillSelectMenuInteraction, reply: FastifyReply); }