import { AutocompleteInteraction, Interaction, StringSelectMenuInteraction } from "discord.js"; import { Client } from "."; export declare const interactionHandlers: Map; export interface IInteractionHandlerOptions { customId: string; run: (client: Client, interaction: Exclude | StringSelectMenuInteraction, ...args: string[]) => void; useParams?: boolean; } export default class { constructor(options: IInteractionHandlerOptions); }