import { Command } from '../../cli/command';
export default class CommandRegistry {
    readonly commands: {
        [commandId: string]: Command;
    };
    constructor(commands: {
        [commandId: string]: Command;
    });
    register(command: Command): void;
    static getID(cmd: Command): string;
}
export declare function getID(cmd: string): string;
