import { EdgeType } from "./EdgeType";
/**
 * Represents a jump between two basic blocks in a control flow graph.
 */
export declare class Edge {
    readonly id: string;
    readonly type: EdgeType;
    readonly label: string;
    readonly description?: string;
    readonly source: string;
    readonly target: string;
    constructor(id: string, type: EdgeType, label: string, source: string, target: string, description?: string);
}
//# sourceMappingURL=Edge.d.ts.map