import { Address, IInstruction, TransactionSigner } from "@solana/kit";
import BN from "bn.js";
export interface DecreaseLiquidityArgs {
    liquidityAmount: BN;
    tokenMinA: BN;
    tokenMinB: BN;
}
export interface DecreaseLiquidityAccounts {
    whirlpool: Address;
    tokenProgram: Address;
    positionAuthority: TransactionSigner;
    position: Address;
    positionTokenAccount: Address;
    tokenOwnerAccountA: Address;
    tokenOwnerAccountB: Address;
    tokenVaultA: Address;
    tokenVaultB: Address;
    tickArrayLower: Address;
    tickArrayUpper: Address;
}
export declare const layout: import("buffer-layout").Layout<unknown>;
export declare function decreaseLiquidity(args: DecreaseLiquidityArgs, accounts: DecreaseLiquidityAccounts, programAddress?: Address): IInstruction;
//# sourceMappingURL=decreaseLiquidity.d.ts.map