import { ApplicationCommandManager, type ApplicationCommand, type GuildResolvable } from "discord.js"; export default class ApplicationCommandManagerExtension, PermissionsOptionsExtras = { guild: GuildResolvable; }, PermissionsGuildType = null> { cache: ApplicationCommandManager["cache"]; fetch: ApplicationCommandManager["fetch"]; constructor(); /** @DJSProtofy */ getById(id: string): ApplicationCommandScope; /** @DJSProtofy */ getByName(name: string | RegExp): ApplicationCommandScope | undefined; /** @DJSProtofy */ fetchByName(name: string | RegExp): Promise; }