import { IAttributes } from "./IAttributes"; export interface IBase { _id?: string; } export interface IElement extends IBase { attributes?: IAttributes; order?: number; }