import { BatchAction } from './batch-action.model';
import { ClientConfig } from './client-config.model';
import { OauthTokenResponse } from './oauth-token-response.model';
export declare class BatchRequest {
    private _token;
    private _config;
    private _actions;
    constructor(_token: OauthTokenResponse, _config: ClientConfig, _actions: BatchAction[]);
    toString(): string;
}
