import { RVDataSourceItem } from "../AbstractClasses/RVDataSourceItem";
import { RVS3DataSource } from "./RVS3DataSource";
import { nullableString } from "../types";
/** Amazon S3 data source item. */
export declare class RVS3DataSourceItem extends RVDataSourceItem {
    constructor(dataSource: RVS3DataSource);
    /** @hidden */
    constructor(json: any);
    /** @hidden */
    toJson(): any;
    private _path;
    /** S3 path for the file represented by this item. For example: 's3://my-bucket/path/to/file.csv' */
    get path(): nullableString;
    set path(value: nullableString);
    /** @hidden */
    getType(): string;
}
