import { HtmlNodeModel, HtmlNode } from '@logicflow/core'; declare class EndCircleModel extends HtmlNodeModel { initNodeData(data: any): void; setAttributes(): void; getDefaultAnchor(): { x: number; y: number; id: string; }[]; } declare class EndCircleView extends HtmlNode { setHtml(roolEl: any): void; } declare const _default: { type: string; view: typeof EndCircleView; model: typeof EndCircleModel; }; export default _default;