import { RVExcelDataSourceItem } from "../Excel/RVExcelDataSourceItem";
import { RVDataSourceItem } from "../AbstractClasses/RVDataSourceItem";
/**
 * The data source item used to represent a dataset from a Google Sheet file, it includes information like the
 * name of the sheet to get data from and the range to use when loading data.
 */
export declare class RVGoogleSheetDataSourceItem extends RVExcelDataSourceItem {
    /** @hidden */
    constructor(json: any);
    constructor(resourceItem: RVDataSourceItem);
    /** @hidden */
    getType(): string;
}
