import { ConfigSchema } from './schemes';
import { z } from 'zod';
export type Config = z.infer<typeof ConfigSchema>;
export interface Project {
    projectId: string;
    projectName: string;
    allowDownload: boolean;
    base: string;
    languages: string[];
}
//# sourceMappingURL=types.d.ts.map