import { fabric } from 'fabric'; import { FabricObject } from '../utils'; import { LinkObject } from './Link'; export interface PortObject extends FabricObject { links?: LinkObject[]; nodeId?: string; enabled?: boolean; } declare const Port: any; export default Port;