import type { GeneratorConfig as PrismaGeneratorConfig } from "@prisma/generator-helper"; interface Paths { enums: string; inputTypeDecorators: string; inputTypes: string; model: string; outputTypes: string; resolvers: string; shared: string; } interface GeneratorOptions { generator: PrismaGeneratorConfig; otherGenerators: PrismaGeneratorConfig[]; } export declare class GeneratorConfig { readonly basePath: string; readonly includePrismaSelect: boolean; readonly inputArgumentsName: string; readonly inputTypeDecoratorsPath: string | undefined; readonly paths: Paths; readonly prismaClientImportPath: string; readonly prismaServiceImport: string; readonly prismaServiceImportPath: string; constructor({ generator: { config, output }, otherGenerators }: GeneratorOptions); } export {};