export interface VennDataItem { sets: string[]; size: number; name: string; } export interface VennGraphOptions { data?: Array; colors?: string[]; }