import { TreeNodeProps } from 'rc-tree-select/es/TreeNode';

export type NodeProps = {
  children?: Array<NodeProps>;
  pId: string;
  id: string;
} & Required<Pick<TreeNodeProps, 'title' | 'value' | 'disabled'>>;