import type { OrgNode } from './OrgChart.svelte'; interface OrgChartTreeProps { root: OrgNode; onselect?: (node: OrgNode) => void; } declare const OrgChartTree: import("svelte").Component; type OrgChartTree = ReturnType; export default OrgChartTree;