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