import type { Arguments, CommandBuilder } from "yargs"; export declare const command = "update_pool_collections"; export declare const desc = "Update your pool"; declare type Options = { collections: string; keypair: string; simulate: string; network: string; }; export declare const builder: CommandBuilder; export declare const handler: (argv: Arguments) => Promise; export {};