import { z } from 'zod';
export declare const PytestResultSchema: z.ZodObject<{
    testModules: z.ZodArray<z.ZodObject<{
        moduleId: z.ZodString;
        tests: z.ZodArray<z.ZodObject<{
            name: z.ZodString;
            fullName: z.ZodString;
            state: z.ZodEnum<{
                passed: "passed";
                failed: "failed";
                skipped: "skipped";
            }>;
            errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
                message: z.ZodString;
                stack: z.ZodOptional<z.ZodString>;
            }, z.core.$strip>>>;
        }, z.core.$strip>>;
    }, z.core.$strip>>;
}, z.core.$strip>;
//# sourceMappingURL=pytestSchemas.d.ts.map