import { ORGANIZATION } from '@superdata/basic-data-service'; import OrgProvider from './context'; declare const useOrgMap: () => { [key: string]: ORGANIZATION; }; declare const useOrgCode: (code: string) => ORGANIZATION; declare const useOrgList: () => ORGANIZATION[]; declare const useOrgTreeList: () => ORGANIZATION[]; export { useOrgCode, useOrgMap, useOrgList, useOrgTreeList, }; export default OrgProvider;