import { SvelteComponent } from "svelte"; import type { NodeDrawerConfig, AnchorDrawerConfig, EdgeDrawerConfig } from '../../types'; export declare const defaultNodePropsStore: import("svelte/store").Writable; export declare const createNodeProps: (edgeProps?: EdgeDrawerConfig, anchorProps?: { [key: string]: AnchorDrawerConfig[]; } | undefined) => void; 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 SvelteComponent { } export {};