import type { Edge, Node, ReactFlowProps } from '../../types'; export type GraphViewProps = Omit, 'onSelectionChange' | 'nodes' | 'edges' | 'onMove' | 'onMoveStart' | 'onMoveEnd' | 'elevateEdgesOnSelect'> & Required, 'selectionKeyCode' | 'deleteKeyCode' | 'multiSelectionKeyCode' | 'connectionLineType' | 'onlyRenderVisibleElements' | 'translateExtent' | 'minZoom' | 'maxZoom' | 'defaultMarkerColor' | 'noDragClassName' | 'noWheelClassName' | 'noPanClassName' | 'defaultViewport' | 'disableKeyboardA11y' | 'nodeOrigin'>> & { rfId: string; }; declare function GraphViewComponent(p: GraphViewProps): import("solid-js").JSX.Element; declare namespace GraphViewComponent { var displayName: string; } export declare const GraphView: typeof GraphViewComponent; export {}; //# sourceMappingURL=index.d.ts.map