import { Logger } from "../types/logger.type"; import { Registry } from "./registry"; export declare class ActivityExecutor { private _registry; private _logger; constructor(registry: Registry, logger?: Logger); execute(orchestrationId: string, name: string, taskId: number, encodedInput?: string): Promise; }