interface TreeListBranchesProps {
    ancestorsIsLast: ReadonlyArray<boolean>;
    isLast: boolean;
    nestedLevel: number;
}
/**
 * Renders vertical lines showing parent-child relationships in the tree.
 * Positioned in a full-height container to span the entire item including children.
 *
 * The line element carries the stable `astryx-tree-list-guide` theme target so a
 * theme can recolor or hide the connectors via `defineTheme` (e.g.
 * `backgroundColor` or `display: 'none'`) instead of hiding the built-in guides
 * and reimplementing them.
 */
export declare function TreeListBranches({ ancestorsIsLast, isLast: _isLast, nestedLevel, }: TreeListBranchesProps): import("react").JSX.Element;
export declare namespace TreeListBranches {
    var displayName: string;
}
export {};
//# sourceMappingURL=TreeListBranches.d.ts.map