import BaseCommand from './BaseCommand'; import { TCloseSessionReq, TCloseSessionResp } from '../../../thrift/TCLIService_types'; import IThriftClient from '../../contracts/IThriftClient'; type Client = Pick; export default class CloseSessionCommand extends BaseCommand { execute(openSessionRequest: TCloseSessionReq): Promise; } export {};