export interface QueryParams { [key: string]: any; } export declare const invoke: (apiKey: string, apiBase: string, apiVersion: string, func: Function) => (...args: any[]) => any; export declare const get: (apiBase: string, endpoint: string, apiVersion: string, apiKey: string, query?: QueryParams) => Promise;