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