/**
*
* This file is generated automatically, run npm run build to re-generate.
**/
import { HttpMethod } from './flow-types/http-method';
import { WebdriverResponse } from './flow-types/webdriver-response';
import Debug from './debug';
import Driver from './driver';
declare class BaseClass {
    debug: Debug;
    driver: Driver;
    _prefix: string;
    constructor(driver: Driver, prefix?: string);
    requestJSON(method: HttpMethod, path: string, body?: any): WebdriverResponse;
}
export default BaseClass;
