import { DMMF } from '@prisma/generator-helper'; import { type ConfigInternal } from '../../utils/config'; export declare const generateStatusFile: ({ config, dmmf }: { config: ConfigInternal; dmmf: DMMF.Document; }) => Promise<{ unmigratedModels: import("@prisma/generator-helper").ReadonlyDeep | DMMF.FieldDefaultScalar | DMMF.FieldDefaultScalar[] | undefined; relationFromFields?: string[] | undefined; relationToFields?: string[] | undefined; relationOnDelete?: string | undefined; relationName?: string | undefined; documentation?: string | undefined; }>[]; uniqueFields: string[][]; uniqueIndexes: import("@prisma/generator-helper").ReadonlyDeep<{ name: string; fields: string[]; }>[]; documentation?: string | undefined; primaryKey: import("@prisma/generator-helper").ReadonlyDeep<{ name: string | null; fields: string[]; }> | null; isGenerated?: boolean | undefined; }>>>[]; apply: () => Promise; }>;