export type BorrowAssetParams = {
    amount: string;
};
export declare const borrowAsset: ({ amount }: BorrowAssetParams) => Promise<string>;
