import type { ZoneKind, ZoneMap } from "./types.js"; export interface ZoneInputs { excludePaths: string[]; dsSelfMode: boolean; } export declare function classifyZone(rel: string, source: string, opts: ZoneInputs): ZoneKind; export declare function buildZoneMap(files: Array<{ rel: string; source: string; }>, opts: ZoneInputs): ZoneMap;