import { IMode, InsightKind, FormType } from './types'; export declare const SLASH_COMMANDS: { id: IMode; label: string; description: string; }[]; export declare const INSIGHTS: { icon: React.FC<{ size?: number; }>; kind: InsightKind; title: string; sub: string; }[]; export declare const SUGGEST_TILES: { icon: React.FC<{ size?: number; }>; kind: InsightKind; cat: string; mode: IMode; formType?: FormType; prompt: string; }[];