import type * as DMMF from '@prisma/dmmf'; import type { Generable } from './Generable'; export declare class Enum implements Generable { protected readonly type: DMMF.SchemaEnum; protected readonly useNamespace: boolean; constructor(type: DMMF.SchemaEnum, useNamespace: boolean); private isObjectEnum; private isStrictEnum; toJS(): string; private getValueJS; toTS(): string; private getValueTS; }