import { IEdgeInstance, IEdgeRender } from "../types"; export declare const labelRender: ({ edge, config }: { edge: IEdgeInstance; config: any; }) => any; export declare const DEFAULT_EDGE_CONFIG: { shape: { shapeType: string; color: string; width: number; }; label: { labelPosition: number; color: string; background: string; }; }; declare const edgeRender: IEdgeRender; export default edgeRender;