import { APIType, CallProps, Config } from "./api.types"; export declare class API implements APIType { private readonly _endpoint; private readonly _type; private readonly _authCode?; constructor(config: Config); call(path: string, params?: CallProps): Promise; }