import type { DescMessage, MessageValidType } from "@bufbuild/protobuf"; export interface RequestInitWithUrl extends RequestInit { url: string; } type HttpMethod = "GET" | "POST" | "DELETE"; type Serialize = (request: MessageValidType, init: RequestInitWithUrl) => RequestInitWithUrl; interface Endpoint { method: HttpMethod; path: string; serialize: Serialize; } export declare const endpoints: Map; export {}; //# sourceMappingURL=endpoints.d.ts.map