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