/** * ModeIndicator - Hermeneutic Circle Position * * Shows the user's current position in the CREATE Something ecosystem. * Visualizes the Modes of Being: .ltd → .io → .space → .agency * * Position: Bottom-left corner, subtle but persistent */ interface Props { current: 'ltd' | 'io' | 'space' | 'agency' | 'learn'; showLabels?: boolean; size?: 'sm' | 'md'; showYouAreHere?: boolean; } declare const ModeIndicator: import("svelte").Component; type ModeIndicator = ReturnType; export default ModeIndicator;