import type { DMMF } from '@prisma/generator-helper'; import { Annotation } from './types'; import { Ann } from './annotations'; export declare const isAnnotatedWith: ({ annotations }: Annotation, annotation: Ann) => boolean; export declare const isAnnotatedWithOneOf: (annotation: Annotation, annotations: Ann[]) => boolean; export declare const isId: (field: DMMF.Field, primaryKey: DMMF.PrimaryKey | null) => boolean; export declare const isRequired: (field: DMMF.Field) => boolean; export declare const isScalar: (field: DMMF.Field) => boolean; export declare const hasDefaultValue: (field: DMMF.Field) => boolean; export declare const isUnique: (field: DMMF.Field) => boolean; export declare const isRelation: (field: DMMF.Field) => boolean; export declare const isIdWithDefaultValue: (field: DMMF.Field, primaryKey: DMMF.PrimaryKey | null) => boolean; export declare const isReadOnly: (field: DMMF.Field) => boolean; export declare const isUpdatedAt: (field: DMMF.Field) => boolean; export declare const isRequiredWithDefaultValue: (field: DMMF.Field) => boolean;