import type { CommandData } from "../../types/config.ts"; import type { CommandAutocompleteInteraction, CommandInteraction } from "../../types/interaction.ts"; import { createHandlerSetup } from "./index.ts"; /** * Installs commands to the Discord API */ export declare function installCommands(commands: CommandData[]): Promise; /** * Creates the command handler * @returns A function that runs a command */ export declare const setupCommands: ReturnType>;