/** * kivo audit-value — Batch audit existing knowledge entries for value (FR-N04 AC5). * * Scans all active entries, runs LLM value assessment on each, * and reports high/low value breakdown. */ export interface AuditValueOptions { /** Only audit entries in this domain */ domain?: string; /** Max entries to audit (default: all) */ limit?: number; /** Apply action on low-value entries (currently no-op, all entries stay active) */ apply?: boolean; /** Output as JSON */ json?: boolean; } export declare function runAuditValue(options?: AuditValueOptions): Promise; //# sourceMappingURL=audit-value.d.ts.map