import type { PathArray } from '@antv/util'; import { PathStyleProps } from '@antv/g'; import { ShapeComponent as SC, WithPrefix } from '../../runtime'; export type ConnectorOptions = ConnectorPathStyleProps & Record; type MarkerStyleProps

= WithPrefix, P>; type ConnectorPathStyleProps = Omit & MarkerStyleProps<'endMarker'> & { connectorPath?: PathArray[]; endMarker?: boolean; }; export declare const Connector: SC; export {};