import { Client, Interaction } from "discord.js";
export declare class EventManager {
    private client;
    private buttonManager;
    private menuManager;
    private customInteractionHandler?;
    constructor(client: Client);
    setCustomInteractionHandler(handler: (interaction: Interaction) => Promise<void>): void;
}
