export function guidMod(bit: any): string; export function parentIcon({ expanded }: { expanded: any; }): JSX.Element; export function roleIcon(): JSX.Element; export function departIcon(): JSX.Element; export function dealOrgData(data?: any[]): { id: string; content: any; children: any; selectable: boolean; expandable: boolean; icon: ({ expanded }: { expanded: any; }) => JSX.Element; orgId: any; }[]; export function dealRoleData(data?: any[]): { id: any; expandable: boolean; selectable: boolean; content: any; children: any; icon: ({ expanded }: { expanded: any; }) => JSX.Element; }[]; export function dealUserData(data: any[], isRole: any): { id: string; expandable: boolean; selectable: boolean; content: any; userId: any; isUser: boolean; icon: () => JSX.Element; }[]; export function getNode(nodes: any, id: any, key: any): any; export function getRelationData(relation: any): { content: any; id: any; };