/**
 * Artifact Index Statistics
 *
 * Reports index health, coverage, and distribution metrics.
 *
 * @implements #418
 * @source @src/artifacts/types.ts
 * @tests @test/unit/artifacts/stats.test.ts
 */
import type { GraphType } from './types.js';
export interface StatsOptions {
    json?: boolean;
    graph?: GraphType;
}
/**
 * Show artifact index statistics
 */
export declare function showStats(cwd: string, options?: StatsOptions): Promise<void>;
//# sourceMappingURL=stats.d.ts.map