import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface OpenBundledPositionArgs {
    bundleIndex: number;
    tickLowerIndex: number;
    tickUpperIndex: number;
}
export interface OpenBundledPositionAccounts {
    bundledPosition: PublicKey;
    positionBundle: PublicKey;
    positionBundleTokenAccount: PublicKey;
    positionBundleAuthority: PublicKey;
    whirlpool: PublicKey;
    funder: PublicKey;
    systemProgram: PublicKey;
    rent: PublicKey;
}
export declare const layout: any;
export declare function openBundledPosition(args: OpenBundledPositionArgs, accounts: OpenBundledPositionAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=openBundledPosition.d.ts.map