import type { CockpitState } from '@generacy-ai/cockpit'; export interface ClassifiedIssue { state: CockpitState; sourceLabel: string; labels: string[]; } /** * Thin wrapper over `classify(labels)` — always returns `{ state, sourceLabel, labels }` * with `labels` preserved alongside the classification. */ export declare function classifyIssue(labels: string[]): ClassifiedIssue; //# sourceMappingURL=classify-issue.d.ts.map