import type { Arguments, CommandBuilder } from "yargs"; export declare const command = "add_liquidity"; export declare const desc = "Add liquidity"; declare type Options = { amount: number; keypair: string; simulate: string; network: string; }; export declare const builder: CommandBuilder; export declare const handler: (argv: Arguments) => Promise; export {};