export declare const autopilotStyles = "\n @keyframes shimmerSweep {\n 0% { background-position: -200% center; }\n 100% { background-position: 200% center; }\n }\n\n @keyframes dotGrow {\n 0%, 100% { transform: scale(0.3); opacity: 0.2; }\n 50% { transform: scale(1); opacity: 1; }\n }\n\n .autopilot-glow-text {\n background: linear-gradient(90deg, #6d28d9 0%, #a78bfa 30%, #c4b5fd 50%, #a78bfa 70%, #6d28d9 100%);\n background-size: 200% auto;\n -webkit-background-clip: text;\n -webkit-text-fill-color: transparent;\n background-clip: text;\n animation: shimmerSweep 2s linear infinite;\n }\n\n .autopilot-dot {\n display: inline-block;\n width: 5px;\n height: 5px;\n border-radius: 50%;\n background-color: #7c3aed;\n transform: scale(0.3);\n opacity: 0.2;\n }\n\n .autopilot-dot:nth-child(1) { animation: dotGrow 1.2s ease-in-out infinite; animation-delay: 0s; }\n .autopilot-dot:nth-child(2) { animation: dotGrow 1.2s ease-in-out infinite; animation-delay: 0.4s; }\n .autopilot-dot:nth-child(3) { animation: dotGrow 1.2s ease-in-out infinite; animation-delay: 0.8s; }\n"; //# sourceMappingURL=AutopilotStyle.d.ts.map