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