declare type value = any; export declare type Endpoint> = { method: 'get' | 'post' | 'patch' | 'delete'; path: (e: T) => string; pathParams: (keyof T)[]; queryParams: (keyof T)[]; bodyParams: (keyof T)[]; }; export {}; //# sourceMappingURL=endpoint.d.ts.map