import { Address, IAccountMeta, 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<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>;
//# sourceMappingURL=openBundledPosition.d.ts.map