import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import * as types from "../types";
export interface RemoveLiquidityArgs {
    binLiquidityRemoval: Array<types.BinLiquidityReductionFields>;
}
export interface RemoveLiquidityAccounts {
    position: PublicKey;
    lbPair: PublicKey;
    binArrayBitmapExtension: PublicKey;
    userTokenX: PublicKey;
    userTokenY: PublicKey;
    reserveX: PublicKey;
    reserveY: PublicKey;
    tokenXMint: PublicKey;
    tokenYMint: PublicKey;
    binArrayLower: PublicKey;
    binArrayUpper: PublicKey;
    sender: PublicKey;
    tokenXProgram: PublicKey;
    tokenYProgram: PublicKey;
    eventAuthority: PublicKey;
    program: PublicKey;
}
export declare const layout: any;
export declare function removeLiquidity(args: RemoveLiquidityArgs, accounts: RemoveLiquidityAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=removeLiquidity.d.ts.map