/**
 * Cognitive Load Indicator - ADHD-Optimized Progress Component
 * Shows cognitive load with visual warnings when approaching overwhelm
 * Implements therapeutic design principles for neurodivergent users
 */
interface Props {
    currentStep: number;
    totalSteps: number;
    emotionalState?: 'energized' | 'focused' | 'overwhelmed' | 'accomplished';
    size?: 'sm' | 'md' | 'lg';
    showPercentage?: boolean;
    adhdOptimized?: boolean;
    onOverflow?: () => void;
}
declare const CognitiveLoadIndicator: import("svelte").Component<Props, {}, "">;
type CognitiveLoadIndicator = ReturnType<typeof CognitiveLoadIndicator>;
export default CognitiveLoadIndicator;
//# sourceMappingURL=CognitiveLoadIndicator.svelte.d.ts.map