import { BaseEvent, UserId } from '../../..'; /** * Fired when a user stops a recipe in a portfolio. * Measures total recipes that have been stopped directly. */ export interface RecipeStoppedEvent extends BaseEvent { userId: UserId; portfolioId: string; recipeId: string; } export declare const RecipeStoppedEventName = "RecipeStoppedEvent";