import { GraphOptions } from './graph'; export type GraphType = 'line' | 'bar' | 'pie' | 'venn'; export type SeriesOptions = GraphOptions & { type: GraphType; name?: string; id?: string; };