import { z } from 'zod';
import { flowSchema } from './Flow.schema';

export type Flow = z.infer<typeof flowSchema>;
