import { UserCommandBuilder } from "@discord-interactions/builders"; import type { ApplicationCommandType, RESTPostAPIContextMenuApplicationCommandsJSONBody } from "discord-api-types/v10"; import { HandledInteraction } from "../handlers/HandledInteraction.js"; import { UserCommandContext } from "../index.js"; import { ICommandBase, RegisteredCommandBase } from "./Base.js"; export declare type IUserCommand = ICommandBase; export declare class UserCommand extends HandledInteraction { handler: (ctx: UserCommandContext) => Promise; } export declare class RegisteredUserCommand extends RegisteredCommandBase { }