import { Model } from '../model'; export declare type Mapping = Model & { models: MappingModel[]; description?: string; name: string; refMappingId?: string; type: string; workgroupId: string; }; export declare type MappingModel = Model & { description?: string; fields: MappingField[]; primaryKey: string; refModelId?: string; standard?: string; type: string; }; export declare type MappingField = Model & { defaultValue?: any; isPrimaryKey?: boolean; name: string; description?: string; refFieldId?: string; type: string; }; //# sourceMappingURL=mapping.d.ts.map