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