import { ethers } from 'ethers';
export type BorrowParams = {
    asset: string;
    amount: string;
    poolAddress: string;
    interestRateMode?: number;
};
export declare const borrow: (params: BorrowParams, wallet: ethers.Wallet) => Promise<any>;
