export interface CategoryDef { description: string; model: string; variant?: string; } export type CategoryConfig = Partial; export declare const DEFAULT_CATEGORIES: Record; export declare function resolveCategory(categoryName: string, configCategories?: Record): CategoryDef | undefined;