///
///
/**
* Hook for getting the current nodes from the store.
*
* @public
* @returns store with an array of nodes
*/
export declare function useNodes(): {
subscribe: (this: void, run: import("svelte/store").Subscriber) => import("svelte/store").Unsubscriber;
update: (this: void, updater: import("svelte/store").Updater) => void;
set: (this: void, value: import("..").Node[]) => import("..").Node[];
setDefaultOptions: (opts: Partial, string>, "id">>) => void;
setOptions: (opts: import("../store/utils").NodeStoreOptions) => void;
};
/**
* Hook for getting the current edges from the store.
*
* @public
* @returns store with an array of edges
*/
export declare function useEdges(): import("svelte/store").Writable & {
setDefaultOptions: (opts: import("..").DefaultEdgeOptions) => void;
};