import React from 'react'; export interface TreeNodeCheckboxProps { /** * Node key */ nodeKey: string; } /** * TreeNodeCheckbox Component * * A composable component for the checkbox of a tree node. * Typically used within TreeNode. * * @public * * @example * ```tsx * * * * ``` * * @remarks * - Automatically handles checked state and indeterminate state. * - Only renders when Tree is checkable. */ export declare const TreeNodeCheckbox: React.FC; //# sourceMappingURL=TreeNodeCheckbox.d.ts.map