import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import * as types from "../types";
export interface CollectFeesV2Args {
    remainingAccountsInfo: types.RemainingAccountsInfoFields | null;
}
export interface CollectFeesV2Accounts {
    whirlpool: PublicKey;
    positionAuthority: PublicKey;
    position: PublicKey;
    positionTokenAccount: PublicKey;
    tokenMintA: PublicKey;
    tokenMintB: PublicKey;
    tokenOwnerAccountA: PublicKey;
    tokenVaultA: PublicKey;
    tokenOwnerAccountB: PublicKey;
    tokenVaultB: PublicKey;
    tokenProgramA: PublicKey;
    tokenProgramB: PublicKey;
    memoProgram: PublicKey;
}
export declare const layout: any;
export declare function collectFeesV2(args: CollectFeesV2Args, accounts: CollectFeesV2Accounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=collectFeesV2.d.ts.map