import { z } from "zod"; export declare const CreateProcessModelSchema: z.ZodObject<{ tenantId: z.ZodString; name: z.ZodString; }, z.core.$strip>; export declare const UpdateProcessModelSchema: z.ZodObject<{ tenantId: z.ZodString; id: z.ZodString; bpmn: z.ZodString; svg: z.ZodString; }, z.core.$strip>; export declare const ListProcessModelsSchema: z.ZodObject<{ tenantId: z.ZodString; }, z.core.$strip>; export declare const DeleteProcessModelSchema: z.ZodObject<{ tenantId: z.ZodString; id: z.ZodString; }, z.core.$strip>;