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