import BaseCommand from './BaseCommand';
import { TFetchResultsReq, TFetchResultsResp } from '../../../thrift/TCLIService_types';
import IThriftClient from '../../contracts/IThriftClient';
type Client = Pick<IThriftClient, 'FetchResults'>;
/**
 * TFetchResultsReq.fetchType - 0 represents Query output. 1 represents Log
 */
export default class FetchResultsCommand extends BaseCommand<Client> {
    execute(data: TFetchResultsReq): Promise<TFetchResultsResp>;
}
export {};
