import type { SvcCompanyApiError } from '@/api/error'; export type LinkedIngredientError = { module: 'sku' | 'recipe' | 'skuGroup'; name: string; _id: string; message?: string; }; export type ValidationErrorBody = { statusCode: number; error: 'VALIDATION_ERROR'; message: string; errors: LinkedIngredientError[]; }; export declare function isLinkedIngredientError(error: SvcCompanyApiError): error is SvcCompanyApiError;