import * as Types from "../utils/Types";
export default abstract class BaseInstance {
    url: string | undefined;
    private api_key;
    private instance_type;
    private headers;
    constructor(url: string | undefined, api_key: string | undefined, instance_type: Types.instanceType);
    call(options: Types.callOptions): Promise<any>;
    private formatOptions;
}
