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