import { RecipePredicate } from '.'; export declare type RecipeIngredientVariable = string; export interface RecipeIngredient { longName: string; variable: RecipeIngredientVariable; emoji: string; infoUrl: string; predicates: RecipePredicate[]; /** Is this ingredient meant for advanced users? */ advanced?: boolean; /** Is this ingredient not in use anymore? */ deprecated?: boolean; /** The color of the time series line. */ color?: string; }