import vorpal from '@moleculer/vorpal';
import AppContext from '../models/AppContext';
import HostConnections from '../models/HostConnections';
declare type InstallArgs = vorpal.Args & {
    packagePath?: string;
    options: {
        skipLaunch?: boolean;
        useDevice?: string;
    };
};
export declare const installAction: (cli: vorpal, stores: {
    hostConnections: HostConnections;
    appContext: AppContext;
}, args: InstallArgs) => Promise<boolean>;
export default function install(stores: {
    hostConnections: HostConnections;
    appContext: AppContext;
}): (cli: vorpal) => void;
export {};
//# sourceMappingURL=install.d.ts.map