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