import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface WithdrawReferrerFeesAccounts {
    referrer: PublicKey;
    referrerTokenState: PublicKey;
    reserve: PublicKey;
    reserveLiquidityMint: PublicKey;
    reserveSupplyLiquidity: PublicKey;
    referrerTokenAccount: PublicKey;
    lendingMarket: PublicKey;
    lendingMarketAuthority: PublicKey;
    tokenProgram: PublicKey;
}
export declare function withdrawReferrerFees(accounts: WithdrawReferrerFeesAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=withdrawReferrerFees.d.ts.map