import type { TreeNode } from '@primereact/types/headless/organizationchart'; import type { OrganizationChartNodeRow } from '@primereact/types/primitive/organizationchart'; import type { useOrganizationChartContext } from '../OrganizationChart.context'; type OrgChart = NonNullable>; /** * Builds the per-node payload passed to the `OrganizationChart.Nodes` render function. */ export declare function buildNodeRow(organizationchart: OrgChart, node: TreeNode, level: number): OrganizationChartNodeRow; export {};