/** * Copyright 2025 The Artinet Project * SPDX-License-Identifier: Apache-2.0 */ import { z } from "zod/v4"; export declare const APIRequestSchema: z.ZodObject<{ id: z.ZodOptional>; requestId: z.ZodOptional; timestamp: z.ZodOptional; }, z.core.$strip>; export type APIRequest = z.output; export declare const APIResponseSchema: z.ZodObject<{ id: z.ZodOptional>; requestId: z.ZodOptional; timestamp: z.ZodOptional; success: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>; export type APIResponse = z.output; //# sourceMappingURL=base.d.ts.map