/** * CLI argument parser using Node.js parseArgs (works with both Bun and Node.js) */ export type CliArgs = { provider?: string; days?: number; since?: string; until?: string; json?: boolean; monthly?: boolean; watch?: boolean; stats?: boolean; config?: "show"; commander?: boolean; commanderPort?: number; }; export declare function parseArgs(): CliArgs;