import { UserNotificationService } from '~backend/user/notification/notification.service'; import { NotifyOptions, NotifyResponse } from '~backend/user/user.interface'; import { RewardJobService } from '~backend/marketing/reward-job/reward-job.service'; export declare class AdminController { private readonly userNotificationService; private readonly rewardJobService; constructor(userNotificationService: UserNotificationService, rewardJobService: RewardJobService); sendNotification(body: NotifyOptions): Promise; getBenefitJobs(start: string, end: string): Promise; getRewardJobById(id: string): Promise; runRewardJob(id: string): Promise; rollbackRewardJob(id: string): Promise; }