export declare const init: (options: { initPath: string; silent: boolean; }) => Promise; export declare const installDependencies: (options: { dependencies?: string[]; installPath: string; silent: boolean; usePrefix: boolean; }) => Promise<{ dest: string[]; }>; export declare const installDependency: (options: { dependency: string; installPath: string; silent?: boolean; usePrefix: boolean; }) => Promise<{ dest: string; }>;