import { z } from 'zod'; export declare const Payload: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export type Payload = z.infer; export declare const Params: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export type Params = z.infer; export declare const QueryParams: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export type QueryParams = z.infer; export type ResponseBody = { data: unknown; };