import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { nodesStore: any; derivedEdges: any; key: string; }; events: { contextmenu: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type IndexProps = typeof __propDef.props; export declare type IndexEvents = typeof __propDef.events; export declare type IndexSlots = typeof __propDef.slots; export default class Index extends SvelteComponentTyped { } export {};