UNPKG

blax

Version:

Blax - HMS-Powered Multi-Agent Platform with Government Agency Analysis, Deep Research, and Enterprise-Ready Deployment. No local LLM keys required.

101 lines 2.42 kB
/** * Industry-Specific Panel Configurations * * Modular panel system for different industries and purposes * Each panel type has specialized functionality and appearance */ export interface PanelModule { id: string; name: string; description: string; industry: string; category: 'compliance' | 'data' | 'workflow' | 'analytics' | 'standards' | 'financial'; icon: string; color: string; commands: string[]; shortcuts: Record<string, string>; widgets: PanelWidget[]; hmsAgents: string[]; } export interface PanelWidget { type: 'status' | 'progress' | 'chart' | 'list' | 'form' | 'upload' | 'report'; title: string; data?: any; refreshInterval?: number; } export declare const INDUSTRY_PANELS: Record<string, PanelModule>; export declare const PANEL_CATEGORIES: { compliance: { name: string; color: string; icon: string; }; data: { name: string; color: string; icon: string; }; workflow: { name: string; color: string; icon: string; }; analytics: { name: string; color: string; icon: string; }; standards: { name: string; color: string; icon: string; }; financial: { name: string; color: string; icon: string; }; }; export declare const INDUSTRIES: { healthcare: { name: string; icon: string; panels: string[]; }; finance: { name: string; icon: string; panels: string[]; }; legal: { name: string; icon: string; panels: string[]; }; technology: { name: string; icon: string; panels: string[]; }; government: { name: string; icon: string; panels: string[]; }; manufacturing: { name: string; icon: string; panels: string[]; }; research: { name: string; icon: string; panels: string[]; }; }; export declare function getPanelsByIndustry(industry: string): PanelModule[]; export declare function getPanelsByCategory(category: string): PanelModule[]; export declare function getAvailableIndustries(): string[]; export declare function getAvailableCategories(): string[]; export default INDUSTRY_PANELS; //# sourceMappingURL=industryPanels.d.ts.map