import { RocketletSlashCommandManager } from '../managers'; import { ISlashCommandsModify } from 'temporary-rocketlets-ts-definition/accessors'; import { ISlashCommand } from 'temporary-rocketlets-ts-definition/slashcommands'; export declare class SlashCommandsModify implements ISlashCommandsModify { private readonly manager; private readonly rocketletId; constructor(manager: RocketletSlashCommandManager, rocketletId: string); modifySlashCommand(slashCommand: ISlashCommand): void; disableSlashCommand(command: string): void; enableSlashCommand(command: string): void; }