export class LiquidityPoolId {
    static fromOperation(tlAssetXdr: xdr.TrustLineAsset): LiquidityPoolId;
    constructor(liquidityPoolId: any);
    liquidityPoolId: any;
    toXDRObject(): xdr.TrustLineAsset;
    getLiquidityPoolId(): string;
    getAssetType(): AssetType.liquidityPoolShares;
    equals(asset: LiquidityPoolId): boolean;
    toString(): string;
}
