export interface Symbol { name: string; frequency: number; color: string; } export interface StateInfo { index: number; symbol: Symbol; }