export interface IMapState { color?: string; state?: string; value?: string | null; percent?: string | null; } export interface IMapStates { [stateAbbreviation: string]: IMapState; }