import z from "zod";

//#region src/libs/runtime/schema.d.ts
declare const RuntimeAdapterSchema: z.ZodObject<{
  key: z.ZodString;
  hosts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
    entrypoint: z.ZodString;
    integrationEntrypoint: z.ZodOptional<z.ZodString>;
  }, z.z.core.$strip>>>;
  config: z.ZodOptional<z.ZodObject<{
    customBuildArtifacts: z.ZodOptional<z.ZodArray<z.ZodString>>;
    customPrepareArtifacts: z.ZodOptional<z.ZodArray<z.ZodString>>;
  }, z.z.core.$strip>>;
  lucid: z.ZodString;
}, z.z.core.$strip>;
//#endregion
export { RuntimeAdapterSchema as default };
//# sourceMappingURL=schema.d.mts.map