export interface IProductDetailV2 {
    kosher: boolean;
    noDairy: boolean;
    noGluten: boolean;
    noSugar: boolean;
    organic: boolean;
    sauceSpicy: 0 | 1 | 2 | 3 | 4;
    vegan: boolean;
    vegetarian: boolean;
}
