import { z } from 'zod';
export declare const DevContainerFile: z.ZodPipeline<z.ZodEffects<z.ZodString, string | number | boolean | import("type-fest").JsonObject | import("type-fest").JsonValue[] | readonly import("type-fest").JsonValue[] | null, string>, z.ZodObject<{
    image: z.ZodOptional<z.ZodString>;
    features: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
        version?: string | undefined;
    }>, Record<string, any>>>;
}, "strip", z.ZodTypeAny, {
    image?: string | undefined;
    features?: Record<string, {
        version?: string | undefined;
    }> | undefined;
}, {
    image?: string | undefined;
    features?: Record<string, any> | undefined;
}>>;
export type DevContainerFile = z.infer<typeof DevContainerFile>;
