import { z } from 'zod'; /** * Common error response schema * Used across all API endpoints for consistent error responses */ export declare const ErrorSchema: z.ZodObject<{ message: z.ZodString; }, z.core.$strip>; export type ErrorResponse = z.infer; //# sourceMappingURL=error.schema.d.ts.map