import { Interaction } from 'discord.js'; import { AkitaNeru } from '../../managers/framework'; import { Client } from '../../structures/client'; import { ClientEvent } from '../../structures/event'; declare class InteractionEvent extends ClientEvent { private readonly client; private readonly framework; constructor(akita: AkitaNeru, client: Client); callback(interaction: Interaction): Promise; } export { InteractionEvent as ClientEvent };