import type { FormMode } from '@/components/form/form-mode.enum'; export interface RecipeDialogProps { show?: boolean; recipe?: FdoInventoryRecipe | null; mode?: FormMode; } export interface RecipeDialogEvents { (event: 'update:show', show: boolean): void; }