import { IotSimAdapter } from '../interfaces/iot-sim-adapter.interface'; import { IotSimModuleOptions } from '../interfaces/options.interface'; import { HttpService } from '@nestjs/axios'; import { XuyuCardInfo } from '../interfaces/response/xuyu/card-info.xuyu.interface'; import { BaseResponse } from '../interfaces/response/base.response.interface'; export declare class XuyuIotSimAdapter implements IotSimAdapter { private readonly options; private readonly httpService; constructor(options: IotSimModuleOptions, httpService: HttpService); getCardList(isArrearage: boolean): Promise>; getCardInfoBatch(iccidList: string[]): Promise>; recharge(): void; }