/** Detect which install mode to use based on the source string */ export type InstallMode = 'git' | 'npm' | 'local'; export declare function detectInstallMode(source: string): InstallMode; export interface InstallOptions { mode?: InstallMode; } export declare function installCommand(source: string | undefined, options: InstallOptions): Promise; //# sourceMappingURL=install.d.ts.map