import type { Arguments, CommandBuilder } from "yargs"; export declare const command = "borrow"; export declare const desc = "Borrow"; declare type Options = { nftAddress: string; poolOwner: string; duration: number; keypair: string; simulate: string; network: string; }; export declare const builder: CommandBuilder; export declare const handler: (argv: Arguments) => Promise; export {};