import { FetchOptions, SomeObject, QueryResponse } from "./types"; export declare function attachParamsToUrl(url: string, params: SomeObject): string; export declare function makeRequest({ endpoint, fetchOptions, query, variables, }: { endpoint: string; fetchOptions: FetchOptions; query: string; variables: SomeObject; }): Promise;