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