import { Command } from '../command';
export type Manifest = {
    commands: {
        [id: string]: Command.Cached;
    };
    version: string;
};
