export type TransformCapacityErrorMode = "plain" | "build"; export type ImportErrorClassification = { type: "http-bundle-missing"; hash: string; message: string; } | { type: "module-not-found"; message: string; } | { type: "unknown"; message: string; }; export declare function classifyImportError(importError: unknown): ImportErrorClassification; export declare function createTransformCapacityError(mode: TransformCapacityErrorMode, message: string, filePath: string): Error; //# sourceMappingURL=loader-helpers.d.ts.map