import type { InvokeArgs, ClientContext } from "./types.js"; declare class HandlerClient { private readonly plugin; /** * We need the default plugin to later on fetch another plugin than initially selected. * If name of the required plugin is not the default one, fetch new one. */ private readonly default; constructor(context: ClientContext); invoke(params: InvokeArgs): Promise; } export default HandlerClient;