import { Endpoint, Fns, Tap } from "./types.js"; export type EndpointOptions = { fns: F; tap?: Tap; }; /** * Create a renraku endpoint for your fns. * - an endpoint is a function that accepts json rpc requests * - for each request, it calls the appropriate fn * - it then returns the fn's in json rpc response format */ export declare function makeEndpoint(options: EndpointOptions): Endpoint;