/** * fourMM — Four.meme Market Maker * * Root CLI definition. Command groups are mounted here. */ import { Cli } from 'incur'; export declare const cli: Cli.Cli<{ [x: `${string} init`]: { args: {}; options: { rpcUrl?: string | undefined; network?: "bsc" | "bsc-testnet" | undefined; slippageBps?: number | undefined; }; }; [x: `${string} set`]: { args: { key: string; value: string; }; options: {}; }; [x: `${string} get`]: { args: {}; options: { key?: string | undefined; }; }; } & { [x: `${string} create-group`]: { args: {}; options: { name: string; count: number; note?: string | undefined; password?: string | undefined; }; }; [x: `${string} generate`]: { args: {}; options: { group: number; count: number; password?: string | undefined; }; }; [x: `${string} add`]: { args: {}; options: { group: number; privateKey: string; note?: string | undefined; password?: string | undefined; }; }; [x: `${string} group-info`]: { args: {}; options: { id: number; showKeys: boolean; password?: string | undefined; }; }; [x: `${string} list-groups`]: { args: {}; options: { password?: string | undefined; }; }; [x: `${string} delete-group`]: { args: {}; options: { id: number; force: boolean; password?: string | undefined; }; }; [x: `${string} remove`]: { args: {}; options: { group: number; address: string; password?: string | undefined; }; }; [x: `${string} import`]: { args: {}; options: { group: number; file: string; password?: string | undefined; }; }; [x: `${string} export`]: { args: {}; options: { group: number; file: string; password?: string | undefined; }; }; [x: `${string} export-group`]: { args: {}; options: { file: string; encrypt: boolean; password?: string | undefined; }; }; [x: `${string} overview`]: { args: {}; options: { groups: string; token?: string | undefined; password?: string | undefined; }; }; } & { [x: `${string} pool`]: { args: {}; options: { ca: string; }; }; [x: `${string} create`]: { args: {}; options: { name: string; symbol: string; image: string; description: string; category: "Meme" | "AI" | "Defi" | "Games" | "Infra" | "De-Sci" | "Social" | "Depin" | "Charity" | "Others"; presetBuy: number; dryRun: boolean; twitter?: string | undefined; website?: string | undefined; telegram?: string | undefined; devWallet?: number | undefined; password?: string | undefined; }; }; [x: `${string} identify`]: { args: {}; options: { ca: string; }; }; [x: `${string} graduate-status`]: { args: {}; options: { ca: string; }; }; [x: `${string} info`]: { args: {}; options: { ca: string; }; }; } & { [x: `${string} balance`]: { args: {}; options: { address: string; token?: string | undefined; }; }; [x: `${string} transactions`]: { args: {}; options: { group: number; limit: number; token?: string | undefined; }; }; [x: `${string} price`]: { args: {}; options: { token: string; }; }; [x: `${string} monitor`]: { args: {}; options: { group: number; token: string; }; }; [x: `${string} kline`]: { args: {}; options: { token: string; interval: "1m" | "5m" | "15m" | "1h" | "4h" | "12h" | "1d"; count: number; pool?: string | undefined; }; }; } & { [x: `${string} out`]: { args: {}; options: { from: string; toGroup: number; value: number; dryRun: boolean; password?: string | undefined; }; }; [x: `${string} in`]: { args: {}; options: { to: string; fromGroup: number; amount: "fixed" | "all" | "reserve"; dryRun: boolean; value?: number | undefined; password?: string | undefined; }; }; [x: `${string} many-to-many`]: { args: {}; options: { fromGroup: number; toGroup: number; amount: "fixed" | "all" | "reserve"; dryRun: boolean; value?: number | undefined; password?: string | undefined; }; }; } & { [x: `${string} buy`]: { args: {}; options: { group: number; token: string; amount: number; slippage: number; dryRun: boolean; password?: string | undefined; }; }; [x: `${string} sell`]: { args: {}; options: { group: number; token: string; amount: string; slippage: number; dryRun: boolean; password?: string | undefined; }; }; [x: `${string} batch`]: { args: {}; options: { group: number; token: string; amount: number; slippage: number; dryRun: boolean; password?: string | undefined; }; }; [x: `${string} sniper`]: { args: {}; options: { group: number; token: string; amounts: string; slippage: number; dryRun: boolean; password?: string | undefined; }; }; } & { [x: `${string} turnover`]: { args: {}; options: { fromGroup: number; toGroup: number; token: string; amount: number; slippage: number; dryRun: boolean; password?: string | undefined; }; }; [x: `${string} volume`]: { args: {}; options: { group: number; token: string; amount: number; slippage: number; rounds: number; interval: number; dryRun: boolean; password?: string | undefined; }; }; [x: `${string} robot-price`]: { args: {}; options: { group: number; token: string; direction: "up" | "down"; targetPrice: number; amount: number; interval: number; maxRounds: number; slippage: number; dryRun: boolean; maxCost?: number | undefined; password?: string | undefined; }; }; }, undefined, undefined>; //# sourceMappingURL=cli.d.ts.map