/** * Classifies a file by basename to determine transport encoding and MIME type. * * - encoding "utf8": text/code, returned as a UTF-8 string * - encoding "base64": binary/image, returned as base64 * - mediaType: MIME type for rendering; null means "unknown binary" * * Receives a filename (basename) — not a full path. Classification uses only * extname and basename, so passing the full path is unnecessary coupling. */ export declare function classifyFile(name: string): { encoding: "utf8" | "base64"; mediaType: string | null; }; //# sourceMappingURL=fs-classify.d.ts.map