export interface IGraph {
    options: any;
    initialize(props: object): this;
    start(): this;
    update(): void;
    reset(): void;
}
