import { PluginCtx } from "."; export type LoadOptions = { defaultHandlerTimeoutMs?: number; globalNodeModulesPath?: string; }; export type PluginModule = { name: string; location: string; }; export declare namespace Plugin { function load(opts?: LoadOptions): Promise; function call(source: PluginCtx, event: string, payload: Payload): Promise; }