export declare enum IconCategoryEnum { "construction" = 0, "content" = 1, "editor" = 2, "election" = 3, "finance" = 4, "health" = 5, "logos" = 6, "programming" = 7, "social media" = 8 } export type IconCategory = keyof typeof IconCategoryEnum; export declare namespace IconCategory { function values(): string[]; } export type IMXIcon = { name: string; value: string; categories: IconCategory[]; fontSet?: string; keywords?: string[]; };