import React from 'react'; import type { Node } from '../types'; type NodeAppearance = { borderColor: string; selectedBorderColor: string; borderWidth: number; borderRadius: number; background: string; textColor: string; shadow: string; hoverShadow: string; selectedShadow?: string; padding: number; fontSize: number; fontWeight: number; }; export type NodeViewProps = { node: Node; className?: string; style?: React.CSSProperties; children?: React.ReactNode; appearance?: Partial; unstyled?: boolean; }; /** * Minimal node view: absolutely positioned box at node's world coords. * You can pass children to render arbitrary HTML content inside the node. */ export declare const NodeView: React.ForwardRefExoticComponent>; export {};