/** * @author songxiwen * @date 2020/08/25 11:05 */ import { Document } from 'mongoose'; export declare class Element extends Document { name: string; weight: number; parentId?: string; } export declare const elementSchema: import("mongoose").Schema;