import { FutureResult } from '@ephox/katamari'; import type { ResponseType } from './HttpData'; import { type HttpError } from './HttpError'; import type { GetDelInit, JwtTokenFactory, PostPutInit } from './HttpTypes'; export declare const post: (init: PostPutInit, tokenFactory: JwtTokenFactory) => FutureResult>; export declare const put: (init: PostPutInit, tokenFactory: JwtTokenFactory) => FutureResult>; export declare const get: (init: GetDelInit, tokenFactory: JwtTokenFactory) => FutureResult>; export declare const del: (init: GetDelInit, tokenFactory: JwtTokenFactory) => FutureResult>; //# sourceMappingURL=HttpJwt.d.ts.map