import type { Arguments, CommandBuilder } from "yargs"; export declare const command = "get_pool_from_owner_address"; export declare const desc = "Get pool from owner address"; declare type Options = { details?: string; keypair: string; publicKey: string; network: string; }; export declare const builder: CommandBuilder; export declare const handler: (argv: Arguments) => Promise; export {};