import { Generator, GeneratorConfig, GeneratorManifest, GeneratorOptions } from '@prisma/generator'; type PrismaClientJsGeneratorOptions = { shouldResolvePrismaClient?: boolean; shouldInstallMissingPackages?: boolean; runtimePath?: string; }; export declare class PrismaClientJsGenerator implements Generator { #private; readonly name: "prisma-client-js"; constructor({ shouldResolvePrismaClient, runtimePath }?: PrismaClientJsGeneratorOptions); getManifest(config: GeneratorConfig): Promise; generate(options: GeneratorOptions): Promise; } export {};