import { Address, IInstruction, Option, TransactionSigner } from "@solana/kit";
import * as types from "../types";
export interface AddLiquidityByWeightArgs {
    liquidityParameter: types.LiquidityParameterByWeightFields;
}
export interface AddLiquidityByWeightAccounts {
    position: Address;
    lbPair: Address;
    binArrayBitmapExtension: Option<Address>;
    userTokenX: Address;
    userTokenY: Address;
    reserveX: Address;
    reserveY: Address;
    tokenXMint: Address;
    tokenYMint: Address;
    binArrayLower: Address;
    binArrayUpper: Address;
    sender: TransactionSigner;
    tokenXProgram: Address;
    tokenYProgram: Address;
    eventAuthority: Address;
    program: Address;
}
export declare const layout: import("buffer-layout").Layout<unknown>;
export declare function addLiquidityByWeight(args: AddLiquidityByWeightArgs, accounts: AddLiquidityByWeightAccounts, programAddress?: Address): IInstruction;
//# sourceMappingURL=addLiquidityByWeight.d.ts.map