/**
 * Artifact Dependency Graph
 *
 * Traverses the artifact dependency graph built from @-mention relationships.
 * Shows upstream (what this depends on) and downstream (what depends on this).
 *
 * @implements #417
 * @source @src/artifacts/types.ts
 * @tests @test/unit/artifacts/dep-graph.test.ts
 */
import type { GraphType } from './types.js';
export interface DepsOptions {
    direction?: 'upstream' | 'downstream' | 'both';
    depth?: number;
    json?: boolean;
    graph?: GraphType;
    edgeType?: string;
}
/**
 * Show dependencies for an artifact
 */
export declare function showDeps(cwd: string, artifactPath: string, options?: DepsOptions): Promise<void>;
//# sourceMappingURL=dep-graph.d.ts.map