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