import { Command } from 'commander';
import type { CLIResult } from '../../common/types.js';
interface InstallCommandArgs {
    name?: string;
    force?: boolean;
}
export declare function installCommand(args: InstallCommandArgs): Promise<CLIResult>;
export declare const commandCommand: Command;
export {};
