import { Command } from 'commander'; type Budget_opts = { from?: string; to?: string; json?: boolean; pretty?: boolean; timing?: boolean; apiKey?: string; }; declare const handle_budget_balance: (opts: Budget_opts) => Promise; declare const handle_budget_zones: (opts: Budget_opts) => Promise; declare const handle_budget_zone: (name: string, opts: Budget_opts) => Promise; declare const budget_command: Command; export { budget_command, handle_budget_balance, handle_budget_zones, handle_budget_zone, }; //# sourceMappingURL=budget.d.ts.map