import { Address, IAccountMeta, IInstruction, Option, TransactionSigner } from "@solana/kit";
import * as types from "../types";
export interface AddLiquidityOneSidePreciseArgs {
    parameter: types.AddLiquiditySingleSidePreciseParameterFields;
}
export interface AddLiquidityOneSidePreciseAccounts {
    position: Address;
    lbPair: Address;
    binArrayBitmapExtension: Option<Address>;
    userToken: Address;
    reserve: Address;
    tokenMint: Address;
    binArrayLower: Address;
    binArrayUpper: Address;
    sender: TransactionSigner;
    tokenProgram: Address;
    eventAuthority: Address;
    program: Address;
}
export declare const layout: import("buffer-layout").Layout<unknown>;
export declare function addLiquidityOneSidePrecise(args: AddLiquidityOneSidePreciseArgs, accounts: AddLiquidityOneSidePreciseAccounts, programAddress?: Address): IInstruction<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>;
//# sourceMappingURL=addLiquidityOneSidePrecise.d.ts.map