import { BondOfferV2 } from '../../types';
import { web3 } from '@coral-xyz/anchor';
type MigrateLenderVault = (params: {
    connection: web3.Connection;
    accounts: {
        userPubkey: web3.PublicKey;
        bondOffer: BondOfferV2;
    };
    sendTxn: (transaction: web3.Transaction, signers: web3.Signer[]) => Promise<void>;
}) => Promise<{
    instructions: web3.TransactionInstruction[];
    signers: web3.Signer[];
}>;
export declare const migrateLenderVault: MigrateLenderVault;
export {};
