import { Interaction } from 'discord.js'; import { Client } from "../.."; import { ContextBase } from "./base"; export interface SlashCommandContext extends ContextBase { type: 'slashCommand'; send(content: string): void; } export declare const slashCommandContext: (client: Client, interaction: Interaction) => SlashCommandContext | undefined;