export interface Category { key: string; icon: string; color?: string; banner?: string; id: string; iconSource?: string; minUsers?: number; maxUsers?: number; reviewableAttributes?: string[]; } export declare function createCategory(params: Partial): Category;