import { RVSqlPDSDataSource } from "../AbstractClasses/RVSqlPDSDataSource";
import { nullableString } from "../types";
/**
 * Databricks data source
 */
export declare class RVDatabricksDataSource extends RVSqlPDSDataSource {
    constructor();
    /** @hidden */
    constructor(json: any);
    /** @hidden */
    toJson(): any;
    /** @hidden */
    getProviderKey(): string;
    private _httpPath;
    /**
     * The partial URL corresponding to the server to connect to.
     */
    get httpPath(): nullableString;
    set httpPath(value: nullableString);
    private _database;
    /**
     * Name of the database to connect to.
     */
    get database(): nullableString;
    set database(value: nullableString);
    private _schema;
    /**
     * Name of the schema to connect to.
     */
    get schema(): nullableString;
    set schema(value: nullableString);
    /** @hidden */
    getType(): string;
    /** @hidden */
    _getWrapper(): any;
}
