import { BzTreeItemType, PostItemType, OrgItemType } from '../core'; import { UserInfoType } from '../AppContext/interface'; declare class Api { getOrgs(): Promise; getUsers(organizationId: string, params?: any, filterUserIds?: string[]): Promise; getPosts(orgId: string): Promise; getDeviceBzTree(): Promise; getCustomDeviceGroup(): Promise; getPlacesByHasDevice(): Promise; } declare const _default: Api; export default _default;