/**
 * gwm completion status コマンド
 * 補完のインストール状況を表示
 */
import type { ShellType } from '../types.js';
export interface StatusInfo {
    shell: ShellType | 'kiro';
    installed: boolean;
    path: string;
}
/**
 * ステータスを取得
 */
export declare function getStatus(): StatusInfo[];
/**
 * ステータスをフォーマット
 */
export declare function formatStatus(statuses: StatusInfo[]): string;
//# sourceMappingURL=status.d.ts.map