import { APIRole, Collection, Role, RoleSelectMenuInteraction } from "discord.js";
import { ExtraCommandReplyInteractionOptions } from "../../types/types.js";
import { RexSelectMenuInteractionBase } from "./selectmenu.js";
export declare class RexRoleSelectMenuInteraction extends RexSelectMenuInteractionBase {
    inter: RoleSelectMenuInteraction;
    constructor(inter: RoleSelectMenuInteraction, opt?: ExtraCommandReplyInteractionOptions);
    get roles(): Collection<string, Role | APIRole>;
}
