import { Graph } from './Graph';
export interface Graphable {
to_graph(g: Graph, ...args: unknown[]): void;
}