import type { ContextAreaMapping } from "./source-pack-types.js"; export interface CodeClassification { language: string; summary: string; tags: string[]; routes: string[]; score: number; bucket: string; } export declare function classifyCodeFile(relative: string, content: string, areas: ContextAreaMapping[]): CodeClassification;