/** * File Organizer MCP Server v3.4.2 * File Category Constants */ import type { CategoryName } from "./types.js"; /** * File extension to category mappings */ export declare const CATEGORIES: Record; /** * All category names as an array */ export declare const CATEGORY_NAMES: readonly CategoryName[]; /** * Get category for a file extension * @param extension - File extension (with dot, e.g., '.pdf') * @returns Category name */ export declare function getCategory(extension: string): CategoryName; //# sourceMappingURL=constants.d.ts.map