import { Address, IInstruction, TransactionSigner } from "@solana/kit";
export interface OpenBundledPositionArgs {
    bundleIndex: number;
    tickLowerIndex: number;
    tickUpperIndex: number;
}
export interface OpenBundledPositionAccounts {
    bundledPosition: Address;
    positionBundle: Address;
    positionBundleTokenAccount: Address;
    positionBundleAuthority: TransactionSigner;
    whirlpool: Address;
    funder: TransactionSigner;
    systemProgram: Address;
    rent: Address;
}
export declare const layout: import("buffer-layout").Layout<unknown>;
export declare function openBundledPosition(args: OpenBundledPositionArgs, accounts: OpenBundledPositionAccounts, programAddress?: Address): IInstruction;
//# sourceMappingURL=openBundledPosition.d.ts.map