import { AxiosInstance } from 'axios';
import { PlazbotOptions } from '../types';
export declare class PlazbotHttp {
    protected workspaceId: string;
    protected apiKey: string;
    protected baseUrl: string;
    protected http: AxiosInstance;
    constructor(options: PlazbotOptions);
    protected throwIfError(response: {
        status: number;
        statusText: string;
    }, context: string): void;
}
