export type TaskStage = "foundation" | "backend" | "frontend" | "other"; export interface TaskClassification { stage: TaskStage; foundation: boolean; reasons: string[]; } export declare const classifyTask: (input: { title?: string; description?: string; type?: string; }) => TaskClassification; //# sourceMappingURL=TaskOrderingHeuristics.d.ts.map