import BaseCommand from './BaseCommand';
import { TGetTypeInfoReq, TGetTypeInfoResp } from '../../../thrift/TCLIService_types';
import IThriftClient from '../../contracts/IThriftClient';
type Client = Pick<IThriftClient, 'GetTypeInfo'>;
export default class GetTypeInfoCommand extends BaseCommand<Client> {
    execute(data: TGetTypeInfoReq): Promise<TGetTypeInfoResp>;
}
export {};
