import { VertexModel } from './Vertex'; import { IEdge } from './IEdge'; import { ObjectId } from '../mongodb/MongoTypes'; export declare class EdgeModel extends VertexModel implements IEdge { outType: string; label: string; inType: string; outV: ObjectId | any; inV: ObjectId | any; meta: any; }