import { z } from "zod";
export declare const AdapterSchema: z.ZodEnum<{
    static: "static";
    ssr: "ssr";
}>;
export type Adapter = z.infer<typeof AdapterSchema>;
