export interface PrismaEnumsGeneratorConfig { /** * The namespace to generate the types in. * * @default true */ isExport: boolean | undefined; /** * Use commas to separate the enum values. * * @default true */ useComma: boolean | undefined; } export declare function parseConfig(config: Record): PrismaEnumsGeneratorConfig;