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