import * as z from "zod/v4-mini"; import { PolarError } from "./polarerror.js"; export type ResourceNotFoundData = { error: "ResourceNotFound"; detail: string; }; export declare class ResourceNotFound extends PolarError { error: "ResourceNotFound"; detail: string; /** The original data that was passed to this error instance. */ data$: ResourceNotFoundData; constructor(err: ResourceNotFoundData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const ResourceNotFound$inboundSchema: z.ZodMiniType; //# sourceMappingURL=resourcenotfound.d.ts.map