import { z } from 'zod'; export declare const startBlockSchema: z.ZodObject<{ id: z.ZodString; groupId: z.ZodString; outgoingEdgeId: z.ZodOptional; } & { type: z.ZodLiteral<"start">; label: z.ZodString; }, "strip", z.ZodTypeAny, { label: string; id: string; type: "start"; groupId: string; outgoingEdgeId?: string | undefined; }, { label: string; id: string; type: "start"; groupId: string; outgoingEdgeId?: string | undefined; }>; export type StartBlock = z.infer; //# sourceMappingURL=schemas.d.ts.map