import { Service } from "../core/service"; export interface ServiceExecutorCreateOptions { } export interface ServiceExecutorExecuteOptions { } export declare abstract class Executor { prepare(name: string, workerConfig: ServiceExecutorCreateOptions): Promise; execute(service: Service, data: any, options: ServiceExecutorExecuteOptions): Promise; removeScheduled(service: Service, options: ServiceExecutorExecuteOptions): Promise; }