export interface InventoryBindingProps { modelValue: FdoInventoryBinding[]; readonly?: boolean; context?: string; loading?: boolean; recipes?: FdoInventoryRecipe[]; skus?: FdoInventorySku[]; } export interface InventoryBindingEvents { (event: 'update:modelValue', modelValue: FdoInventoryBinding[]): void; }