import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
export interface TreeNodeChildrenProps extends ComposableProps<'div'> {
/**
* Child nodes (typically TreeNode components)
*/
children: React.ReactNode;
/**
* Node level (for indentation)
*/
level: number;
/**
* Show connecting lines
*/
showLine?: boolean;
}
/**
* TreeNodeChildren Component
*
* A composable component for child nodes of a tree node.
* Typically used within TreeNode.
*
* @public
*
* @example
* ```tsx
*