import { PublicKey, TransactionInstruction } from '@solana/web3.js'; import { Wallet } from 'src/wallet'; import { EscrowState } from './state'; import BN = require('bn.js'); export interface RentTxnRequest { rentee: Wallet; state: EscrowState; programId: PublicKey; amount: BN; time: BN; } export declare const createRentTxn: (query: RentTxnRequest) => TransactionInstruction;