import { z } from 'zod';
import { kartEffectSchema } from './KartEffect.schema';

export type KartEffect = z.infer<typeof kartEffectSchema>;
