import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import * as types from "../types";
export interface CollectProtocolFeesV2Args {
    remainingAccountsInfo: types.RemainingAccountsInfoFields | null;
}
export interface CollectProtocolFeesV2Accounts {
    whirlpoolsConfig: PublicKey;
    whirlpool: PublicKey;
    collectProtocolFeesAuthority: PublicKey;
    tokenMintA: PublicKey;
    tokenMintB: PublicKey;
    tokenVaultA: PublicKey;
    tokenVaultB: PublicKey;
    tokenDestinationA: PublicKey;
    tokenDestinationB: PublicKey;
    tokenProgramA: PublicKey;
    tokenProgramB: PublicKey;
    memoProgram: PublicKey;
}
export declare const layout: any;
export declare function collectProtocolFeesV2(args: CollectProtocolFeesV2Args, accounts: CollectProtocolFeesV2Accounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=collectProtocolFeesV2.d.ts.map