import { configSchema } from './schema/index.js';
import { z } from 'zod';

type Config = z.infer<typeof configSchema>;

export type { Config as C };
