import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface WithdrawPendingFeesAccounts {
    adminAuthority: PublicKey;
    vaultState: PublicKey;
    reserve: PublicKey;
    tokenVault: PublicKey;
    ctokenVault: PublicKey;
    baseVaultAuthority: PublicKey;
    tokenAta: PublicKey;
    tokenMint: PublicKey;
    tokenProgram: PublicKey;
    /** CPI accounts */
    lendingMarket: PublicKey;
    lendingMarketAuthority: PublicKey;
    reserveLiquiditySupply: PublicKey;
    reserveCollateralMint: PublicKey;
    klendProgram: PublicKey;
    instructionSysvarAccount: PublicKey;
    reserveCollateralTokenProgram: PublicKey;
    sharesTokenProgram: PublicKey;
}
export declare function withdrawPendingFees(accounts: WithdrawPendingFeesAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=withdrawPendingFees.d.ts.map