import { z } from 'zod'; export declare const api404ErrorResponseSchema: z.ZodObject<{ status: z.ZodLiteral<"404">; error: z.ZodString; }, z.core.$strip>; export type Api404ErrorResponse = z.infer;