export class LiquidityPoolAsset {
    static fromOperation(ctAssetXdr: xdr.ChangeTrustAsset): LiquidityPoolAsset;
    constructor(assetA: any, assetB: any, fee: any);
    assetA: Asset;
    assetB: Asset;
    fee: any;
    toXDRObject(): xdr.ChangeTrustAsset;
    getLiquidityPoolParameters(): LiquidityPoolParameters;
    getAssetType(): AssetType.liquidityPoolShares;
    equals(other: LiquidityPoolAsset): boolean;
    toString(): string;
}
import { Asset } from "./asset";
