import type { Arguments, CommandBuilder } from "yargs"; export declare const command = "get_loans_from_lender"; export declare const desc = "Get all loans from a lender"; declare type Options = { details?: string; address: string; network: string; }; export declare const builder: CommandBuilder; export declare const handler: (argv: Arguments) => Promise; export {};