import { z } from "zod"; export declare const GetCreditUsageInperiodSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; period: z.ZodObject<{ month: z.ZodString; year: z.ZodString; }, z.core.$strip>; }, z.core.$strip>; export declare const GetPeriodsSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; }, z.core.$strip>; export declare const GetStatsCardsValuesSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; period: z.ZodObject<{ month: z.ZodString; year: z.ZodString; }, z.core.$strip>; }, z.core.$strip>; export declare const GetWorkflowExecutionStatsSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; period: z.ZodObject<{ month: z.ZodString; year: z.ZodString; }, z.core.$strip>; }, z.core.$strip>; export declare const CreateWorkflowSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; name: z.ZodString; description: z.ZodString; }, z.core.$strip>; export declare const DeleteWorkflowSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; workflowId: z.ZodString; }, z.core.$strip>; export declare const DuplicateWorkflowSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; workflowId: z.ZodString; name: z.ZodString; description: z.ZodString; }, z.core.$strip>; export declare const GetWorkflowExecutionsSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; workflowId: z.ZodString; }, z.core.$strip>; export declare const GetWorkflowExecutionWithPhasesSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; executionId: z.ZodString; }, z.core.$strip>; export declare const GetWorkflowPhaseDetailsSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; phaseId: z.ZodString; }, z.core.$strip>; export declare const GetWorkflowsForUserSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; }, z.core.$strip>; export declare const PublishWorkflowSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; workflowId: z.ZodString; flowDefinition: z.ZodString; }, z.core.$strip>; export declare const RemoveWorkflowScheduleSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; workflowId: z.ZodString; }, z.core.$strip>; export declare const RunWorkflowSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; workflowId: z.ZodString; flowDefinition: z.ZodString; }, z.core.$strip>; export declare const UnpublishWorkflowSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; workflowId: z.ZodString; }, z.core.$strip>; export declare const UpdateWorkflowSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; workflowId: z.ZodString; definition: z.ZodString; }, z.core.$strip>; export declare const UpdateWorkflowCronSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; workflowId: z.ZodString; cron: z.ZodString; }, z.core.$strip>; export declare const GetWorkflowByIdSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; workflowId: z.ZodString; }, z.core.$strip>;