import { OrgChartProps, OrgStructure } from './orgChartTypes'; type OrgChartActionProps = OrgChartProps & { parentHeight: number; parentWidth: number; }; declare const useOrgChartActions: ({ structure, cardWidth, cardHeight, cardMargin, rowMargin, component, childrenLabel, asideLabel, breadCrumbComponent, parentHeight, parentWidth, breadCrumbs, breadCrumbWidth, breadCrumbHeight, breadCrumbMargin, breadCrumbBorder, bredCrumbView, }: OrgChartActionProps) => void; export default useOrgChartActions;