import type * as DMMF from '@prisma/dmmf'; import { TSClientOptions } from '../TSClient/TSClient'; /** * Given DMMF models, computes runtime datamodel from it and embeds * it into generated client. Creates lazy `Prisma.dmmf` property for backward * compatibility, which will dynamically compute DMMF.Datamodel from runtime * datamodel when accessed. * Note: Prisma client itself never uses `Prisma.dmmf` and uses runtime datamodel * instead. We are preserving it only for backward compatibility with third party tools. * If we remove it in a future major version, we can further optimize the format — client * needs way less information that is present there at the moment * * @param datamodel * @returns */ export declare function buildRuntimeDataModel(datamodel: DMMF.Datamodel, runtimeName: TSClientOptions['runtimeName']): string;