export class XdrLargeInt {
    static isType(type: any): boolean;
    static getType(scvType: string): string;
    constructor(type: any, values: any);
    int: xdr.LargeInt;
    type: string;
    toNumber(): number;
    toBigInt(): bigint;
    toI64(): xdr.ScVal;
    toU64(): xdr.ScVal;
    toI128(): xdr.ScVal;
    toU128(): xdr.ScVal;
    toI256(): xdr.ScVal;
    toU256(): xdr.ScVal;
    toScVal(): xdr.ScVal;
    valueOf(): any;
    toString(): any;
    toJSON(): {
        value: string;
        type: string;
    };
    _sizeCheck(bits: any): void;
}
