import type { ScanResult } from "@hookwarden/engine"; export interface RenderInventoryOptions { readonly useAnsi: boolean; readonly cwd: string; /** * When true, bypass the evidence filter and show every adapter-detected * candidate (including 0-evidence routes that look webhook-shaped but * carry no provider signals). Default false — narrower, less noise. */ readonly all?: boolean; /** * When true, append an `evidence` column to the table with the per-handler * signal count. Helps explain why a handler made it through (or didn't). */ readonly verbose?: boolean; } export declare function renderInventory(result: ScanResult, opts: RenderInventoryOptions): string; //# sourceMappingURL=inventory.d.ts.map