import { z } from 'zod'; export declare const functionSchema: z.ZodObject<{ id: z.ZodString; slug: z.ZodString; name: z.ZodString; description: z.ZodNullable; code: z.ZodString; status: z.ZodEnum<["draft", "active", "error"]>; createdAt: z.ZodString; updatedAt: z.ZodString; deployedAt: z.ZodNullable; }, "strip", z.ZodTypeAny, { code: string; status: "error" | "draft" | "active"; name: string; description: string | null; id: string; createdAt: string; updatedAt: string; slug: string; deployedAt: string | null; }, { code: string; status: "error" | "draft" | "active"; name: string; description: string | null; id: string; createdAt: string; updatedAt: string; slug: string; deployedAt: string | null; }>; export type FunctionSchema = z.infer; //# sourceMappingURL=functions.schema.d.ts.map