import { z } from 'zod';
/**
 *  Response from registry.buildpacks.io
 */
export declare const BuildpacksRegistryResponse: z.ZodObject<{
    latest: z.ZodOptional<z.ZodObject<{
        homepage: z.ZodOptional<z.ZodString>;
    }, "strip", z.ZodTypeAny, {
        homepage?: string | undefined;
    }, {
        homepage?: string | undefined;
    }>>;
    versions: z.ZodArray<z.ZodObject<{
        version: z.ZodString;
    }, "strip", z.ZodTypeAny, {
        version: string;
    }, {
        version: string;
    }>, "many">;
}, "strip", z.ZodTypeAny, {
    versions: {
        version: string;
    }[];
    latest?: {
        homepage?: string | undefined;
    } | undefined;
}, {
    versions: {
        version: string;
    }[];
    latest?: {
        homepage?: string | undefined;
    } | undefined;
}>;
