import * as z from "zod/v4-mini"; import * as models from "../index.js"; import { InterfereHTTPError } from "./interfere-http-error.js"; export type LibraryBareErrorData = { code: models.LibraryBareErrorCode; message?: string | undefined; service?: models.LibraryBareErrorService | undefined; }; export declare class LibraryBareError extends InterfereHTTPError { code: models.LibraryBareErrorCode; service?: models.LibraryBareErrorService | undefined; /** The original data that was passed to this error instance. */ data$: LibraryBareErrorData; constructor(err: LibraryBareErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const LibraryBareError$inboundSchema: z.ZodMiniType;