/// import * as anchor from '@project-serum/anchor'; import { PublicKey, Transaction } from '@solana/web3.js'; export declare function approveLoanByAdmin({ programId, provider, admin, loan, liquidityPool, collectionInfo, nftPrice, discount, user, sendTxn, }: { programId: PublicKey; provider: anchor.Provider; admin: PublicKey; loan: PublicKey; liquidityPool: PublicKey; collectionInfo: PublicKey; nftPrice: number | anchor.BN; discount: number | anchor.BN; user: PublicKey; sendTxn: (transaction: Transaction) => Promise; }): Promise;