/** * Premium UI Components - Enhanced visual design system for AGI CLI * * Features: * - Gradient-powered visual hierarchy * - Animated progress indicators * - Enhanced typography with proper spacing * - Professional diff visualization * - Context-aware color schemes */ export type VisualTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger' | 'accent' | 'thinking' | 'planning' | 'analysis'; export interface ThoughtDisplayOptions { tone?: VisualTone; icon?: string; label?: string; compact?: boolean; showTimestamp?: boolean; gradientLabel?: boolean; } export interface ToolResultDisplayOptions { toolName: string; summary?: string; content: string; showDiff?: boolean; oldContent?: string; newContent?: string; showExpandHint?: boolean; } export interface ProgressIndicatorOptions { phase: string; current: number; total: number; showPercentage?: boolean; showBar?: boolean; showSteps?: boolean; width?: number; } /** * Format a thought/analysis block with premium visual design */ export declare function formatThought(content: string, options?: ThoughtDisplayOptions): string; /** * Format a tool result with enhanced visualization */ export declare function formatToolResult(content: string, options: ToolResultDisplayOptions): string; /** * Format a progress indicator with visual polish */ export declare function formatProgressIndicator(options: ProgressIndicatorOptions): string; /** * Format a beautiful section header with gradient */ export declare function formatSectionHeader(title: string, subtitle?: string, tone?: VisualTone): string; //# sourceMappingURL=premiumComponents.d.ts.map