import { z } from 'zod';
export declare const mondaycodercSchema: z.ZodEffects<z.ZodObject<{
    RUNTIME: z.ZodOptional<z.ZodEnum<["Python", "Java", "Go", "PHP", "Ruby", "Node.js", "NETCore"]>>;
    RUNTIME_VERSION: z.ZodOptional<z.ZodString>;
}, "strict", z.ZodTypeAny, {
    RUNTIME?: "Python" | "Java" | "Go" | "PHP" | "Ruby" | "Node.js" | "NETCore" | undefined;
    RUNTIME_VERSION?: string | undefined;
}, {
    RUNTIME?: "Python" | "Java" | "Go" | "PHP" | "Ruby" | "Node.js" | "NETCore" | undefined;
    RUNTIME_VERSION?: string | undefined;
}>, {
    RUNTIME?: "Python" | "Java" | "Go" | "PHP" | "Ruby" | "Node.js" | "NETCore" | undefined;
    RUNTIME_VERSION?: string | undefined;
}, {
    RUNTIME?: "Python" | "Java" | "Go" | "PHP" | "Ruby" | "Node.js" | "NETCore" | undefined;
    RUNTIME_VERSION?: string | undefined;
}>;
