import { HttpService } from '@nestjs/axios'; import { Result, WechatWorkData, WechatWorkConfig } from '../interfaces'; import { WechatWorkBaseService } from './wechat-work-base.service'; export declare class WechatWorkContactsService { private readonly config; private readonly httpService; private readonly wechatWorkBaseService; private readonly logger; apiServer: string; constructor(config: WechatWorkConfig, httpService: HttpService, wechatWorkBaseService: WechatWorkBaseService); getUserInfo(userId: string): Promise; getSimpleUserList(departmentId?: number, fetchChild?: number): Promise; getUserList(departmentId?: number, fetchChild?: number): Promise; getDepartmentList(id: number): Promise; getAllDepartmentList(): Promise; }