import { PublicKey, TransactionInstruction } from '@solana/web3.js'; import BN = require('bn.js'); import { Wallet } from 'src/wallet'; export interface EscrowTxnRequest { owner: Wallet; rate: BN; minBorrowTime: BN; maxBorrowTime: BN; ownersRevenueShare: BN; pda: PublicKey; newAccount: PublicKey; programId: PublicKey; } export declare const createInitEscrowTx: ({ owner, programId, newAccount, pda, rate, minBorrowTime, maxBorrowTime, ownersRevenueShare, }: EscrowTxnRequest) => TransactionInstruction;