import { z } from "zod"; import type { McpTool } from "../tool.js"; declare const inputSchema: z.ZodObject<{ /** Items with confidence at or below this land in the queue. */ confidenceMax: z.ZodDefault; /** Days back to consider. */ days: z.ZodDefault; /** Cap on items returned (after grouping). */ limit: z.ZodDefault; /** Restrict to one source type (e.g. "slack") if set. */ source: z.ZodDefault; }, "strip", z.ZodTypeAny, { limit: number; source: string; days: number; confidenceMax: number; }, { limit?: number | undefined; source?: string | undefined; days?: number | undefined; confidenceMax?: number | undefined; }>; interface UnclassifiedItem { sourceId: string; title?: string; type: string; source?: string; confidence: number; date?: string; url?: string; preview: string; currentProjects: string[]; } interface SourceBucket { source: string; count: number; items: UnclassifiedItem[]; } interface Output { since: string; confidenceMax: number; totalQueued: number; bySource: SourceBucket[]; hint?: string; } export declare const listUnclassified: McpTool; export {}; //# sourceMappingURL=list-unclassified.d.ts.map