export interface Dict<T> {
  [index: string]: T;
}
