import { z } from "zod"; export declare const DataError: z.ZodObject<{ resourceName: z.ZodOptional; type: z.ZodLiteral<"data">; message: z.ZodString; jsonPointer: z.ZodString; }, z.core.$strip>; export type DataError = z.infer;