import { OrgStructure } from '@equinor/fusion-components'; import { ReportingPathProps } from '.'; type ReportingPathActionProps = ReportingPathProps & { parentHeight: number; parentWidth: number; }; declare const useReportingPathActions: ({ structure, cardWidth, cardHeight, cardMargin, rowMargin, component, parentHeight, parentWidth, }: ReportingPathActionProps) => void; export default useReportingPathActions;