import { Response } from 'node-fetch'; export declare class API { baseUrl: string; accessToken: string; constructor(accessToken?: string, testing?: boolean); self(): Promise; get(endpoint?: string, querystring?: object): Promise; post(endpoint?: string, body?: object): Promise; put(endpoint?: string, body?: object): Promise; delete(endpoint?: string, body?: object): Promise; }