/**
 * gwm completion install コマンド
 * 補完スクリプトをインストール
 */
import type { ShellType, CommandResult } from '../types.js';
export interface InstallArgs {
    shell?: ShellType;
    kiro?: boolean;
    dryRun?: boolean;
    modifyRc?: boolean;
    path?: string;
}
/**
 * 引数をパース
 */
export declare function parseInstallArgs(args: string[]): InstallArgs;
/** InstallResult は CommandResult の別名（後方互換性のため） */
export type InstallResult = CommandResult;
/**
 * install コマンドを実行
 */
export declare function runInstall(args: InstallArgs): CommandResult;
//# sourceMappingURL=install.d.ts.map