import { type ErrorEntry } from '../types'; export declare class ValidationError extends Error { missingFields: string[]; link: string; entryId: string; contentTypeId: string; locale: string; constructor(entry: ErrorEntry); } export declare class WrappedError extends Error { originalError: unknown; constructor(message: string, error: unknown); }