import { type DataModel, type DataModelField, type DataModelObjectField } from "./types.js"; export declare function isParentField(field: DataModelField): field is DataModelObjectField; export declare function isPartOfRelation(dataModel: DataModel, model: string, fieldName: string): boolean; export declare function isUniqueField(dataModel: DataModel, model: string, fieldName: string): boolean; export declare function isNullableParent(dataModel: DataModel, model: string, fieldName: string): boolean; export declare function getRawDataModel(): Promise; export declare function getDataModel(): Promise;