import type { Snapshot } from './snapshot.js'; export declare const ACTIONABLE_EXACT_LABELS: Set; export declare function isActionableLabel(label: string): boolean; /** * Scans raw `Snapshot.labels[]`, not `classified.state`: an issue carrying both * `completed:specify` and `waiting-for:clarification` is ranked terminal by the * classifier's tier precedence, and trusting `classified.state` would silently * skip the exact issues this sweep exists to surface (FR-011 / Q2). * * The `isDoneSnapshot` short-circuit MUST run first: a closed issue is done, * never actionable, regardless of label residue (#873). See `isDoneSnapshot` * JSDoc for the single-invariant carrier. */ export declare function isActionableSnapshot(snap: Snapshot): boolean; //# sourceMappingURL=actionable.d.ts.map