/** * `fourmm query` command group — read-only data queries. * * Week 2 scope: balance, price. * Week 2 later: kline, transactions, monitor (deferred). */ import { Cli } from 'incur'; export declare const query: Cli.Cli<{ balance: { args: {}; options: { address: string; token?: string | undefined; }; }; } & { price: { args: {}; options: { token: string; }; }; } & { transactions: { args: {}; options: { group: number; limit: number; token?: string | undefined; }; }; } & { monitor: { args: {}; options: { group: number; token: string; }; }; } & { kline: { args: {}; options: { token: string; interval: "1m" | "5m" | "15m" | "1h" | "4h" | "12h" | "1d"; count: number; pool?: string | undefined; }; }; }, undefined, undefined>; //# sourceMappingURL=query.d.ts.map