/**
 * The Arc class contains the parameters of an arc in a
 * directed graph: head node, cost, capacity and flow.
 */
export default class Arc {
    head: number;
    cost: number;
    capacity: number;
    flow: number;
    constructor(head: number, cost: number, capacity: number, flow?: number);
}
