import { AxiosInstance } from 'axios'; declare class ConnectApi { apiKey: string; api: AxiosInstance; constructor({ apiKey }: { apiKey: string; }); get(url: string, params?: object): Promise>; post(url: string, params?: object): Promise>; } export default ConnectApi;