/**
 * Represents the a mapping of all sections to their subsections for a menu in the store
 */
export interface MenuSectionIndex {
  [id: string]: string[];
}