import BaseCommand from './BaseCommand'; import { TGetTablesReq, TGetTablesResp } from '../../../thrift/TCLIService_types'; import IThriftClient from '../../contracts/IThriftClient'; type Client = Pick; export default class GetTablesCommand extends BaseCommand { execute(data: TGetTablesReq): Promise; } export {};