import { ISlashCommand } from 'temporary-rocketlets-ts-definition/slashcommands'; export declare class RocketletSlashCommandRegistration { slashCommand: ISlashCommand; /** * States whether this command has been registered into the Rocket.Chat system or not. */ isRegistered: boolean; /** * Declares whether this command has been enabled or not, * does not have to be inside of the Rocket.Chat system if `isRegistered` is false. */ isEnabled: boolean; /** * Proclaims whether this command has been disabled or not, * does not have to be inside the Rocket.Chat system if `isRegistered` is false. */ isDisabled: boolean; constructor(slashCommand: ISlashCommand); }