import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface RemoveAllLiquidityAccounts {
    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 function removeAllLiquidity(accounts: RemoveAllLiquidityAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=removeAllLiquidity.d.ts.map