import { TypeDaprInvokerCallback } from '../../../types/DaprInvokerCallback.type'; import { InvokerListenOptionsType } from '../../../types/InvokerListenOptions.type'; import HTTPServer from './HTTPServer'; import IServerInvoker from '../../../interfaces/Server/IServerInvoker'; export default class HTTPServerInvoker implements IServerInvoker { private readonly server; private readonly logger; constructor(server: HTTPServer); listen(methodName: string, cb: TypeDaprInvokerCallback, options?: InvokerListenOptionsType): Promise; }