import { Command, CommandData, UserCommandExecutor } from "../index.js"; import { ApplicationCommandType } from "discord-api-types/v10"; export declare class UserCommand extends Command { type: ApplicationCommandType; executor: UserCommandExecutor | undefined; constructor(options?: { data?: CommandData; executor?: UserCommandExecutor; }); setExecutor(executor: UserCommandExecutor): this; }