import type * as DMMF from '@prisma/dmmf'; export interface JSDocMethodBodyCtx { singular: string; plural: string; firstScalar: DMMF.Field | undefined; method: string; model: DMMF.Model; action: DMMF.ModelAction; mapping: DMMF.ModelMapping; } type JSDocsType = { [action in DMMF.ModelAction]: { body: (ctx: JSDocMethodBodyCtx) => string; fields: { [field: string]: (singular: string, plural: string) => string; }; }; }; export declare const JSDocs: JSDocsType; export {};