/** * Error Transformation Utilities * Functions for transforming and structuring errors */ import { TransformedError, StructuredError } from './errorTypes.js'; export declare const transformMongoError: (error: any) => TransformedError; export declare const createStructuredError: (message: string, code?: string, context?: Record) => StructuredError; //# sourceMappingURL=errorTransformation.d.ts.map