/// <reference types="react" />
import { Insight, InsightResult, RawResult } from '../insight';
import { GraphBuilder } from '../../graph';
export declare const INSIGHT_NAME = "cyclic dependencies";
export default class FindCycles implements Insight {
    name: string;
    description: string;
    graphBuilder: GraphBuilder;
    constructor(graphBuilder: GraphBuilder);
    _runInsight(): Promise<RawResult>;
    _renderData(data: any): JSX.Element;
    run(): Promise<InsightResult>;
}
