type FetcherRequestMethod = "get" | "post" | "put" | "patch" | "delete"; export type FetcherRequest = { method: FetcherRequestMethod; endpoint: string; params?: Record; forceTokenRefresh?: boolean; replaceNullByUndefined?: boolean; payload?: Record; withoutWorkspace?: boolean; }; export {}; //# sourceMappingURL=fetcher.d.ts.map