import { RecipeId, RecipeIngredientVariable, RecipePredicate } from '../../..'; import { BaseEvent } from '../../BaseEvent'; /** * Fired when a recipe is run containing a given ingredient. */ export interface RecipeIngredientUsedEvent extends BaseEvent { ingredient: RecipeIngredientVariable; recipeId: RecipeId; predicate?: RecipePredicate; } export declare const RecipeIngredientUsedEventName = "RecipeIngredientUsedEvent";