//#region src/utils/rpc.d.ts declare function createRpcServer(handlers: T): (request: Request) => Promise; declare function createRpcClient(options: { endpoint: string; }): T; //#endregion export { createRpcClient, createRpcServer };