import * as z from "zod/v3"; import * as components from "../components/index.js"; import { GleanBaseError } from "./gleanbaseerror.js"; export type CollectionErrorData = { errorCode: components.CollectionErrorErrorCode; }; export declare class CollectionError extends GleanBaseError { errorCode: components.CollectionErrorErrorCode; /** The original data that was passed to this error instance. */ data$: CollectionErrorData; constructor(err: CollectionErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const CollectionError$inboundSchema: z.ZodType; //# sourceMappingURL=collectionerror.d.ts.map