import * as z from 'zod'; /** * Copyright 2025 © BeeAI a Series of LF Projects, LLC * SPDX-License-Identifier: Apache-2.0 */ declare const ErrorCode: z.ZodEnum<["server_error", "invalid_input", "not_found"]>; type ErrorCode = z.infer; declare const ErrorModel: z.ZodObject<{ code: z.ZodEnum<["server_error", "invalid_input", "not_found"]>; message: z.ZodString; data: z.ZodOptional>; }, "strip", z.ZodTypeAny, { code: "server_error" | "invalid_input" | "not_found"; message: string; data?: unknown; }, { code: "server_error" | "invalid_input" | "not_found"; message: string; data?: unknown; }>; type ErrorModel = z.infer; export { ErrorCode, ErrorModel };