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 * * * * * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically handles indentation and connecting lines. */ export declare const TreeNodeChildren: React.ForwardRefExoticComponent>; //# sourceMappingURL=TreeNodeChildren.d.ts.map