export type ProjectKind = 'coding' | 'general' | 'unknown'; export type ProjectKindOverride = 'auto' | 'coding' | 'general'; export type ProjectKindInference = { kind: ProjectKind; confidence: number; reasons: string[]; }; export declare function inferProjectKind(input: { name?: string | null; description?: string | null; workspaceRoot?: string | null; projectKind?: string | null; }): ProjectKindInference;