import React from 'react'; import { InfiniteCanvasPosition } from '../../types/canvas'; export interface FlowPathSegmentProps { d?: string; className?: string; points?: InfiniteCanvasPosition[]; onMouseDown?: (e: React.MouseEvent) => void; onContextMenu?: (e: React.MouseEvent) => void; arrow?: boolean; nextPoint?: any; } export declare const BaseFlowPathSegment: React.FC; export declare const FlowPathSegment: import("styled-components").StyledComponent, any, {}, never>;