import type { Category, CategoryGroup, CategoryGroupInfo } from '../types/domain.js'; export declare class CategoryMapper { categoryNames: Record; groupNames: Record; categoryToGroup: Record; investmentCategories: Set; constructor(categories: Category[], categoryGroups: CategoryGroup[]); getCategoryName(categoryId: string): string; getGroupInfo(categoryId: string): CategoryGroupInfo | undefined; isInvestmentCategory(categoryId: string): boolean; } //# sourceMappingURL=category-mapper.d.ts.map