import type { SvcCompanyApiError } from '@/api/error'; export type LinkedIngredientError = { module: 'sku' | 'recipe'; name: string; _id: string; }; export declare function isLinkedIngredientError(error: SvcCompanyApiError): error is SvcCompanyApiError;