import { APIGuildMember, APIRole, Collection, GuildMember, MentionableSelectMenuInteraction, Role, User } from "discord.js";
import { ExtraCommandReplyInteractionOptions } from "../../types/types.js";
import { RexSelectMenuInteractionBase } from "./selectmenu.js";
export declare class RexMentionSelectMenuInteraction extends RexSelectMenuInteractionBase {
    inter: MentionableSelectMenuInteraction;
    constructor(inter: MentionableSelectMenuInteraction, opt?: ExtraCommandReplyInteractionOptions);
    get users(): Collection<string, User>;
    get members(): Collection<string, GuildMember | APIGuildMember>;
    get roles(): Collection<string, Role | APIRole>;
}
