import { BashService } from './shared/bash.service'; import { WapService } from './shared/wap.service'; import { FirstLoadService } from './shared/first-load.service'; import { LoggerService } from './shared/logger.service'; import { PluginsService } from './plugins/plugins.service'; import { BindService } from './shared/bind.service'; import { WalletsService } from './wallets/wallets.service'; import { ScheduleService } from './shared/schedule.service'; export declare class ApiService { private loggerService; private wapService; private bashService; private bindService; private firstLoadService; private pluginsService; private walletService; private scheduleService; private title; constructor(loggerService: LoggerService, wapService: WapService, bashService: BashService, bindService: BindService, firstLoadService: FirstLoadService, pluginsService: PluginsService, walletService: WalletsService, scheduleService: ScheduleService); schedule(): Promise; runEach1min(): Promise; runEach10Minutes(): Promise; runEach1Hour(): Promise; getLatestVersionOfApi(): Promise; }