import { IDogeHTTPClient, ISimpleHTTPRequest, ISimpleHTTPResponse } from "./types"; declare class FetchHTTPClient implements IDogeHTTPClient { fetchImplementation: any; constructor(fetchImplementation?: any); sendRequest(request: ISimpleHTTPRequest): Promise; } export { FetchHTTPClient, };