import { Response } from "node-fetch";
import { BaseRequestOptions } from "./helper";
export interface InfoReqOptions extends BaseRequestOptions {
}
/**
 * Fetches the basic info of the api
 */
export declare function getInfo(options: InfoReqOptions): Promise<object | Response>;
