import { Client } from "discord.js"; import { SlashCommandBlueprint } from "./slashCommandBlueprint"; import { AnyPluginData } from "../../plugins/PluginData"; import { SlashGroupBlueprint } from "./slashGroupBlueprint"; type CommandOrGroup = SlashCommandBlueprint, any> | SlashGroupBlueprint; type RegisterResult = { create: number; update: number; delete: number; }; export declare function registerSlashCommands(client: Client, commands: CommandOrGroup[]): Promise; export {};