import { CommandGroup } from "./command-group";
import { RevocableCommand } from "./revocable-command";
export declare class RevocableCommandGroup<COMMAND_TYPE extends RevocableCommand = RevocableCommand> extends CommandGroup<COMMAND_TYPE> implements RevocableCommand {
    revoke(this: this): void;
}
