import { z } from "zod";
export declare const FrameworkSchema: z.ZodEnum<{
    analog: "analog";
    angular: "angular";
    nextjs: "nextjs";
    react: "react";
    nuxt: "nuxt";
    vue: "vue";
    sveltekit: "sveltekit";
    astro: "astro";
    "tanstack-start": "tanstack-start";
    remix: "remix";
    lynx: "lynx";
    flutter: "flutter";
    "react-native": "react-native";
    vite: "vite";
    other: "other";
}>;
export type Framework = z.infer<typeof FrameworkSchema>;
