export interface CliArgs { /** Source directory to scan (positional, default '.'). */ targetPath: string; /** Editor key for click-to-open URL scheme (default 'vscode'). */ editor: string; /** TCP port for the CLI server (default 7272). Out-of-range values fall back to default. */ port: number; /** Whether to auto-open the browser at startup (default true; set false with --no-open). */ open: boolean; /** Extra directory names to skip during scanning + watching (comma-separated). */ ignore: string[]; } /** * Parses CLI argv (process.argv.slice(2)). * react-state-flow [directory] [--editor=] [--port=] [--no-open] [--ignore=] * * Unknown flags are silently ignored. Invalid --port falls back to default. */ export declare function parseArgs(argv: string[]): CliArgs; //# sourceMappingURL=cli-args.d.ts.map