import { BasicsItemCode } from '../../utils/itemCode'; export type TreeDataRef = { id: string; icon: string; name: string; apicode: string; attrId: string; attrValue: string; itemCode: string; itemEditPurview: boolean; parentId: string; isDelete: boolean; sort: number; children: []; }; export interface OnChainResourceTreeProps { outIsSelected: boolean; onSelected: (dataRef: TreeDataRef) => void; onGetTreeFields: (fields: any[]) => void; itemCode?: BasicsItemCode; getInstanceMenu?: () => any; getAttributeByTab?: () => any; } declare const OnChainResourceTree: (props: OnChainResourceTreeProps) => import("react/jsx-runtime").JSX.Element; export default OnChainResourceTree;