export declare const supportedInternalRuntimes: readonly ["nodejs", "workerd", "vercel-edge", "deno"]; declare const supportedPublicRuntimes: readonly ["nodejs", "deno", "bun", "workerd", "cloudflare", "vercel-edge", "edge-light"]; /** * The user-facing `runtime` attribute for the `prisma-client` generator. */ export type RuntimeTarget = (typeof supportedPublicRuntimes)[number]; /** * The internal representation of the `runtime` attribute for the `prisma-client` generator. */ export type RuntimeTargetInternal = (typeof supportedInternalRuntimes)[number]; export declare function parseRuntimeTargetFromUnknown(target: unknown): "nodejs" | "workerd" | "vercel-edge" | "deno"; export {};