interface InstallDefaults { autoUpdate: boolean; plugins: string[]; } export interface InstallCommandOptions { nonInteractive?: boolean; force?: boolean; cwd?: string; } declare function getConfigTemplate(config: InstallDefaults): string; export declare function installCommand(options?: InstallCommandOptions): Promise; export { getConfigTemplate };