export interface InventoryArgs { readonly path?: string; readonly "no-color"?: boolean; readonly "rules-dir"?: string; readonly all?: boolean; readonly verbose?: boolean; } export declare function runInventoryCommand(args: InventoryArgs): Promise; export declare const inventoryCommand: import("citty").CommandDef<{ readonly path: { readonly type: "positional"; readonly required: false; readonly description: "Project root (default: .)"; readonly default: "."; }; readonly "no-color": { readonly type: "boolean"; readonly description: "Disable color and OSC-8 hyperlinks."; }; readonly "rules-dir": { readonly type: "string"; readonly description: "Override the bundled rule pack location (dev-only)."; }; readonly all: { readonly type: "boolean"; readonly description: "Show every route candidate, including handlers with zero webhook evidence (auth routes, cron endpoints, generic API handlers). Default: only handlers with ≥1 webhook signal."; }; readonly verbose: { readonly alias: "v"; readonly type: "boolean"; readonly description: "Add an `evidence` column to the table showing the per-handler signal count."; }; }>; //# sourceMappingURL=inventory.d.ts.map