import { z } from 'zod';
import { standardConfigSchema } from './reusable/index.js';
import { themeSchema } from './themes.js';
export const mintConfigSchema = z.object(Object.assign({ theme: z.literal(themeSchema.enum.mint) }, standardConfigSchema));