import type { Registry } from '../registry.js'; export type MethodCtx = { registry: Registry; startedAt: number; }; export type MethodFn = (params: Record, ctx: MethodCtx) => Promise | unknown; export declare function dispatch(method: string, params: Record, reg: Registry, meta: { startedAt: number; }): Promise; export declare function listMethods(): string[]; //# sourceMappingURL=index.d.ts.map