import { TransactionInstruction, PublicKey } from '@solana/web3.js';
export interface CollectFeesAccounts {
    whirlpool: PublicKey;
    positionAuthority: PublicKey;
    position: PublicKey;
    positionTokenAccount: PublicKey;
    tokenOwnerAccountA: PublicKey;
    tokenVaultA: PublicKey;
    tokenOwnerAccountB: PublicKey;
    tokenVaultB: PublicKey;
    tokenProgram: PublicKey;
}
export declare function collectFees(accounts: CollectFeesAccounts): TransactionInstruction;
