import React from 'react'; import { OrgChartProps } from './types'; /** * OrgChart Component * * Displays an organizational hierarchy chart based on user data. * * @param users - Array of user objects with manager relationships * @param onNodeClick - Optional callback when a node is clicked * @param className - Optional additional CSS classes * @param expandable - Whether nodes can be collapsed/expanded (default: false) * @param initiallyExpanded - Whether nodes start expanded (default: true) * @param companyInfo - Optional company information (name, logo) to display at the top * @param defaultExpandedLevels - Number of levels to show expanded by default (default: 2) */ export declare const OrgChart: React.FC; export default OrgChart;