/**
 * @fileoverview Unused dependency detection for AI Code Review
 *
 * This module provides functionality to detect unused dependencies
 * using tools like depcheck and provides actionable information.
 */
/**
 * Find unused dependencies using depcheck
 * @param projectPath Path to the project
 * @returns Array of unused dependencies
 */
export declare function findUnusedDependencies(projectPath: string): Promise<string[]>;
