import { SvelteComponentTyped } from "svelte"; import type { NodeDrawerConfig, AnchorDrawerConfig, EdgeDrawerConfig } from '../../types'; export declare const defaultNodePropsStore: import("svelte/store").Writable; export declare const createNodeProps: (x: number, y: number, edgeProps?: EdgeDrawerConfig, anchorProps?: { [key: string]: AnchorDrawerConfig[]; }) => any; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type DrawerNodeProps = typeof __propDef.props; export type DrawerNodeEvents = typeof __propDef.events; export type DrawerNodeSlots = typeof __propDef.slots; export default class DrawerNode extends SvelteComponentTyped { } export {};