import { z, type ZodType } from 'zod'; type AnyZodSchema = ZodType; type OperationLike

= { call: string; schema: { params: P; response: R; }; mapper: (data: z.infer) => O; }; export declare function runOperation

(op: OperationLike, input: z.input

): Promise; export {};