/// import { ConfigInternal } from '../utils/config'; import type { DMMF } from '@prisma/generator-helper'; /** Types may vary between Prisma versions */ export type Scalars = { DateTime: { Input: Date; Output: Date; }; Decimal: { Input: DecimalType; Output: DecimalType; }; BigInt: { Input: bigint; Output: bigint; }; Json: { Input: JsonInput; Output: JsonOutput; }; Bytes: { Input: Buffer; Output: { type: 'Buffer'; data: number[]; }; }; NEVER: { Input: void; Output: void; }; }; export declare function generateInputs(config: ConfigInternal, dmmf: DMMF.Document): Promise;