/// import Int64 from 'node-int64'; import { TGetInfoValue } from '../../thrift/TCLIService_types'; type InfoResultType = string | number | Buffer | Int64 | null; export default class InfoValue { private value; constructor(value: TGetInfoValue); getValue(): InfoResultType; } export {};