export interface GenerateAuthzDatamodelOptions { /** Path to the Prisma schema (e.g. 'prisma/schema.prisma'). */ schemaPath: string; /** Where to write the generated .ts (e.g. 'src/authz/datamodel.ts'). */ outPath: string; /** Exported const name in the generated file. Default 'authzDatamodel'. */ exportName?: string; } /** * Reads the Prisma schema, extracts the full datamodel (with real `isList`) via getDMMF, * and writes a typed `.ts` module exporting it. Returns the number of models written. */ export declare function generateAuthzDatamodel(opts: GenerateAuthzDatamodelOptions): Promise; //# sourceMappingURL=datamodel.d.ts.map