import { ScheduleActionService } from "./schedule_action.service"; import { ScheduleActionCronService } from "./schedule_action_cron.service"; export declare class ScheduleActionController { protected service: ScheduleActionService; protected cronService: ScheduleActionCronService; constructor(service: ScheduleActionService, cronService: ScheduleActionCronService); restartCron(): Promise; createSystemSchedule(data: any): Promise; finishSchedule(params: any, data: any): Promise; forceToWaiting(params: any): Promise; forceExecute(params: any): Promise; purgeLog(): Promise; syncExternalProvider(): Promise; }