/** * memory-review-queue — Task 327. * * Read-only operator surface for the dream-cycle's review queues. * Returns counts plus a small sample of `:OrphanCandidate` and * `:CitationProposal` rows so the operator can decide whether to triage * them. Without this, the dream-cycle's queue nodes are invisible — write-only * shape. * * Phases 5 (backlinks) and 6 (tag consistency) are not in v1, so neither * `:BackLinkGap` nor `:TagMergeProposal` appears here yet — when they * land, this tool extends to surface them. */ export interface MemoryReviewQueueParams { accountId: string; /** Sample size per queue. Default 5, max 25. */ sampleSize?: number; } export interface QueueSummary { label: string; count: number; sample: Array>; } export interface MemoryReviewQueueResult { queues: QueueSummary[]; totalPending: number; } export declare function memoryReviewQueue(params: MemoryReviewQueueParams): Promise; //# sourceMappingURL=memory-review-queue.d.ts.map