import { RVDataSourceItem } from "../AbstractClasses/RVDataSourceItem";
import { nullableString } from "../types";
/**
 * Dropbox data source item, referencing a file in Dropbox
 */
export declare class RVDropboxDataSourceItem extends RVDataSourceItem {
    constructor();
    /** @hidden */
    constructor(json: any);
    /** @hidden */
    toJson(): any;
    private _path;
    /**
     * Path to the file in Dropbox account
     */
    get path(): nullableString;
    set path(value: nullableString);
    /** @hidden */
    getType(): string;
}
