import OrgChartNode from './OrgChartNode.svelte'; import type { OrgNode } from './OrgChart.svelte'; interface OrgChartNodeProps { node: OrgNode; onselect?: (node: OrgNode) => void; selectedId?: string | null; } declare const OrgChartNode: import("svelte").Component; type OrgChartNode = ReturnType; export default OrgChartNode;