/**
 * 補完スクリプトのパス関連ユーティリティ
 * install / uninstall / status で共通利用
 */
import type { ShellType } from '../types.js';
/**
 * RC ファイルのマーカー
 */
export declare const RC_MARKER_START = "# >>> gwm completion >>>";
export declare const RC_MARKER_END = "# <<< gwm completion <<<";
/**
 * シェル補完スクリプトのデフォルトインストール先を取得
 */
export declare function getDefaultInstallPath(shell: ShellType): string;
/**
 * Kiro/Fig spec のインストール先を取得
 */
export declare function getKiroInstallPath(): string;
/**
 * RC ファイルのパスを取得
 * @returns RCファイルのパス。fishの場合は自動読み込みのためnull
 */
export declare function getRcFilePath(shell: ShellType): string | null;
//# sourceMappingURL=paths.d.ts.map