import { JWT } from '../types'; export declare function doQuery(url: string, query: string, variables: Record, jwt: string | undefined): Promise; export declare function doGet(url: any, jwt?: string): Promise; export declare function doPost(url: string, data: any, jwt?: JWT): Promise; export declare function doPut(url: string, data: any, jwt?: JWT): Promise;