/// <reference types="bn.js" />
import anchor from '@project-serum/anchor';
import { Keypair, PublicKey, Transaction } from '@solana/web3.js';
interface IParams {
    programId: PublicKey;
    provider: anchor.Provider;
    user: PublicKey;
    nftMint: PublicKey;
    proposedNftPrice: number | anchor.BN;
    isPriceBased: boolean;
    sendTxn: (transaction: Transaction, signers: Keypair[]) => Promise<void>;
}
interface IReturn {
    loanPubkey: any;
}
declare const proposeLoan: ({ proposedNftPrice, programId, provider, user, nftMint, isPriceBased, sendTxn, }: IParams) => Promise<IReturn>;
export default proposeLoan;
