import AnalyticsColumnLabel from './AnalyticsColumnLabel';
import AnalyticsContextDescription from './AnalyticsContextDescription';
/**
 * @export
 * @class AnalyticsResponse
 */
export declare class AnalyticsResponse {
    /**
     * @type {any[]}
     * @memberof AnalyticsResponse
     */
    rows?: any[];
    /**
     * Number of rows returned
     * @type {number}
     * @memberof AnalyticsResponse
     */
    rowCount?: number;
    /**
     * @type {AnalyticsColumnLabel[]}
     * @memberof AnalyticsResponse
     */
    columnLabels?: AnalyticsColumnLabel[];
    /**
     * @type {AnalyticsContextDescription[]}
     * @memberof AnalyticsResponse
     */
    contextDescription?: AnalyticsContextDescription[];
    constructor(obj?: Partial<AnalyticsResponse>);
}
export default AnalyticsResponse;
