interface IGraphOptions {
    inputs?: {
        [key: string]: string[];
    };
    isDirected?: boolean;
}
export default IGraphOptions;
