import { CommandStatus } from "./ICommand";
import IContext from "./IContext";
export default class CreatorToolsCommands {
    static debugProjectInformation(context: IContext, name: string, args: string[]): Promise<{
        status: CommandStatus;
    }>;
    static debugMinecraft(context: IContext, name: string, args: string[]): Promise<{
        status: CommandStatus;
    }>;
    static startMinecraft(context: IContext, name: string, args: string[]): Promise<{
        status: CommandStatus;
    }>;
    static stopMinecraft(context: IContext, name: string, args: string[]): Promise<{
        status: CommandStatus;
    }>;
    static updateMinecraft(context: IContext, name: string, args: string[]): Promise<{
        status: CommandStatus;
    }>;
    static registerCommonCommands(): void;
}
