import { OrgStructure, OrgChartItemProps } from '@equinor/fusion-components'; import { FC } from 'react'; export type ReportingPathProps = { structure: T[]; component: FC> | null; cardWidth?: number; cardHeight?: number; cardMargin?: number; rowMargin?: number; }; declare const ReportingPath: (props: ReportingPathProps) => JSX.Element; export default ReportingPath;