/** * @author songxiwen * @date 2020/08/25 11:30 */ import { Document } from 'mongoose'; export declare class ElementField extends Document { key: string; value: string; elementFieldBaseTypeId: string; elementId: string; elementFieldFormItemType: string; } export declare const elementFieldSchema: import("mongoose").Schema;