import { ReferenceResult, SymbolInfo } from '../../types/index.js';
/**
 * CLI出力のフォーマッタークラス
 */
export declare class OutputFormatter {
    /**
     * 参照分析結果を表示する
     * @param result 参照分析結果
     */
    static displayReferenceResult(result: ReferenceResult): void;
    /**
     * 未使用シンボル情報を表示する
     * @param filePath ファイルパス
     * @param symbols シンボル情報の配列
     */
    static displayUnreferencedSymbols(filePath: string, symbols: SymbolInfo[]): void;
    /**
     * エラーを表示する
     * @param message エラーメッセージ
     * @param details 詳細情報
     */
    static displayError(message: string, details?: string): void;
}
//# sourceMappingURL=OutputFormatter.d.ts.map