declare const depts: { name: string; id: string; children: ({ name: string; id: string; children: ({ name: string; id: string; children?: undefined; } | { name: string; id: string; children: any[]; })[]; } | { name: string; id: string; children: { name: string; id: string; children: { name: string; id: string; }[]; }[]; })[]; }; declare const getDepartments: () => Promise<{ name: string; id: string; children: ({ name: string; id: string; children: ({ name: string; id: string; children?: undefined; } | { name: string; id: string; children: any[]; })[]; } | { name: string; id: string; children: { name: string; id: string; children: { name: string; id: string; }[]; }[]; })[]; }>; declare const getParentDepartments: (target: string) => Promise; declare const getFlatDepartments: () => Promise; declare const getDeptMappings: () => Promise<{}>; declare const getChildrenDepts: (id: any) => Promise; export { depts, getDepartments, getParentDepartments, getFlatDepartments, getDeptMappings, getChildrenDepts };